@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
14 lines (12 loc) • 349 B
JavaScript
import { NamedUnit } from "../../NamedUnit.js";
import { UnitMatrix } from "../../UnitMatrix.js";
/**
* SI derived unit of electric charge. 1 C = 1 A·s.
* @type {NamedUnit}
*/
export const COULOMB = new NamedUnit(
'Coulomb',
'C',
'SI derived unit of electric charge. 1 C = 1 A·s.',
new UnitMatrix().set(0, 0, 1, 1, 0, 0, 0)
);