UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines (12 loc) 309 B
import { NamedUnit } from "../NamedUnit.js"; import { UnitMatrix } from "../UnitMatrix.js"; /** * SI base unit of electric current. * @type {NamedUnit} */ export const AMPERE = new NamedUnit( 'Ampere', 'A', 'SI base unit of electric current.', new UnitMatrix().set(0, 0, 0, 1, 0, 0, 0) );