Extract frustum from a 4x4 matrice.
Assign with a samey matrice.
Assign from other small matrices (same size, compatible type).
Assign with a static array of size R * C.
Assign with a dynamic array of size R * C.
Matrix * scalar multiplication.
Matrix * vector multiplication.
Matrix * matrix multiplication.
Matrix add and substraction.
Cast to other matrix types. If the size are different, the resulting matrix is truncated and/or filled with identity coefficients.
Convert 3x3 rotation matrix to quaternion.
Converts a 4x4 rotation matrix to quaternion.
Assignment operator with another samey matrix.
Assignment operator with another samey matrix.
Return a pointer to content.
In-place matrix scaling.
Covnerts to pretty string.
In-place translate by (v, 1)
Construct a matrix from columns.
Construct a matrix from rows.
Similar to the glRotate matrix, however the angle is expressed in radians
Make a scaling matrix.
Make a translation matrix.
Generic non-resizeable matrix with R rows and C columns. Intended for 3D use (size 3x3 and 4x4). Important: <b>Matrices here are in row-major order whereas OpenGL is column-major.</b>