@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
14 lines (12 loc) • 342 B
JavaScript
import { NamedUnit } from "../../NamedUnit.js";
import { UnitMatrix } from "../../UnitMatrix.js";
/**
* SI derived unit of force. 1 N = 1 kg·m / s^2.
* @type {NamedUnit}
*/
export const NEWTON = new NamedUnit(
'Newton',
'N',
'SI derived unit of force. 1 N = 1 kg·m / s^2.',
new UnitMatrix().set(1, 1, -2, 0, 0, 0, 0)
);