UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines (12 loc) 285 B
import { NamedUnit } from "../NamedUnit.js"; import { UnitMatrix } from "../UnitMatrix.js"; /** * SI base unit of time. * @type {NamedUnit} */ export const SECOND = new NamedUnit( 'Second', 's', 'SI base unit of time.', new UnitMatrix().set(0, 0, 1, 0, 0, 0, 0) );