UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines (12 loc) 287 B
import { NamedUnit } from "../NamedUnit.js"; import { UnitMatrix } from "../UnitMatrix.js"; /** * SI base unit of length. * @type {NamedUnit} */ export const METER = new NamedUnit( 'Meter', 'm', 'SI base unit of length.', new UnitMatrix().set(1, 0, 0, 0, 0, 0, 0) );