@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
17 lines (15 loc) • 406 B
JavaScript
import { NamedUnit } from "../../NamedUnit.js";
import { UnitMatrix } from "../../UnitMatrix.js";
/**
* SI derived unit of frequency. 1 Hz = 1 / s.
*
* Note: dimensionally indistinguishable from {@link BECQUEREL}.
*
* @type {NamedUnit}
*/
export const HERTZ = new NamedUnit(
'Hertz',
'Hz',
'SI derived unit of frequency. 1 Hz = 1 / s.',
new UnitMatrix().set(0, 0, -1, 0, 0, 0, 0)
);