UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

12 lines (10 loc) 215 B
/** * Identity 4x4 matrix, also called "eye" matrix sometimes. * @type {number[]|mat4} */ export const M4_IDENTITY = Object.freeze([ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ]);