Constructor. Take and store the Mat4's values
Getter for the Mat4's determinant
Getter for the Float32Array form of the Mat4
Getter for the Mat4's forward vector
Getter for the Mat4's forward vector
Getter for the readable string form of the Mat4
Getter for the Mat4's up vector
Clone the Mat4
a new Mat4 with the same values as this one
Reset the Mat4's values to match the identity matrix
Create a Mat4 representing a rotation by a given angle (radians) around an arbitrary given axis
Useful convenience method effectively equivalent to rotating a new Mat4 by angles scaled along the x, y and z axes
the axis to rotate around
the angle (radians) to rotate by
the rotation Matrix
Create a 4x4 lookAt matrix, representing the orientation required to have an object face a target
Note: does not produce a View Matrix, instead a more generally-useful lookAt Matrix. For use as a View, must be inverted
the position of the object
the target to look at
the up axis of the object
the lookAt matrix
Create a 4x4 orthographic projection matrix for a given viewing box definition
the left of the viewing box
the right of the viewing box
the bottom of the viewing box
the top of the viewing box
the near plane
the far plane
the 4x4 orthographic projection matrix
Create a 4x4 perspective projection matrix for a given field of view, aspect ratio and near and far planes
If far is not provided, an infinite projection matrix will be created
the vertical field of view
the aspect ratio
the near plane
the far plane
the 4x4 perspective projection matrix
Class representing a 4x4 Matrix and providing static utilities for mathematical operations