Standalone Matrix3 component of gl-matrix
npm install gl-matrix-mat3These repositories break up the glMatrix library into discrete components. This module contains code for 3x3 Matrices
Install with npm(1):
``sh`
$ npm install --save gl-matrix-mat3
`js`
var mat3 = require('gl-matrix-mat3');
Install with component(1):
`sh`
$ component install component-glmatrix/mat3
`js``
var mat3 = require('mat3');
glMatrix
=======================
Javascript has evolved into a language capable of handling realtime 3D graphics,
via WebGL, and computationally intensive tasks such as physics simulations.
These types of applications demand high performance vector and matrix math,
which is something that Javascript doesn't provide by default.
glMatrix to the rescue!
glMatrix is designed to perform vector and matrix operations stupidly fast! By
hand-tuning each function for maximum performance and encouraging efficient
usage patterns through API conventions, glMatrix will help you get the most out
of your browsers Javascript engine.
Learn More
----------------------
For documentation, news, tutorials, and more visit the glMatrix Homepage
BSD