@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
14 lines (12 loc) • 380 B
JavaScript
import { NamedUnit } from "../../NamedUnit.js";
import { UnitMatrix } from "../../UnitMatrix.js";
/**
* SI derived unit of pressure / stress. 1 Pa = 1 N / m^2 = 1 kg / (m·s^2).
* @type {NamedUnit}
*/
export const PASCAL = new NamedUnit(
'Pascal',
'Pa',
'SI derived unit of pressure / stress. 1 Pa = 1 N / m^2.',
new UnitMatrix().set(-1, 1, -2, 0, 0, 0, 0)
);