UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines (12 loc) 327 B
import { NamedUnit } from "../NamedUnit.js"; import { UnitMatrix } from "../UnitMatrix.js"; /** * SI base unit of thermodynamic temperature. * @type {NamedUnit} */ export const KELVIN = new NamedUnit( 'Kelvin', 'K', 'SI base unit of thermodynamic temperature.', new UnitMatrix().set(0, 0, 0, 0, 1, 0, 0) );