UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

8 lines 133 B
/** * 2x2 Identity matrix * @type {Readonly<number[]>} */ export const M2_IDENTITY = Object.freeze([ 1, 0, 0, 1 ]);