UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines (12 loc) 290 B
import { NamedUnit } from "../NamedUnit.js"; import { UnitMatrix } from "../UnitMatrix.js"; /** * SI base unit of mass. * @type {NamedUnit} */ export const KILOGRAM = new NamedUnit( 'Kilogram', 'kg', 'SI base unit of mass.', new UnitMatrix().set(0, 1, 0, 0, 0, 0, 0) );