Mat3 constructor
initial array to use, default to identity matrix
The type of the Mat3
Our matrix array
Sets the Mat3 values from an array
array to use
optional offset in the array to use
Set a transformation matrix from translation, scale and center 2D coordinates and a rotation. Useful to compute UV transformation matrices.
translation along X axis.
translation along Y axis.
Scale along X axis.
Scale along Y axis.
Rotation in radians.
Center of the transformation along X axis.
Center of the transformation along Y axis.
Basic 3x3 matrix class used for matrix calculations.
Note that like three.js, the constructor and set method take arguments in row-major order, while internally they are stored in the elements array in column-major order.
See