Internal typed array storing matrix data in column-major order
ReadonlyclassReturns the class name of the matrix implementation
ReadonlyisIndicates if this matrix is an identity matrix class
Readonlym00Element at row 0, column 0
Readonlym01Element at row 0, column 1
Readonlym02Element at row 0, column 2
Readonlym10Element at row 1, column 0
Readonlym11Element at row 1, column 1
Readonlym12Element at row 1, column 2
Readonlym20Element at row 2, column 0
Readonlym21Element at row 2, column 1
Readonlym22Element at row 2, column 2
Checks if this matrix is approximately equal to another matrix.
Matrix to compare against
Optionaldelta: numberOptional tolerance for comparison (default: small epsilon)
True if matrices are approximately equal
Checks if this matrix is strictly equal to another matrix.
Matrix to compare against
True if matrices are exactly equal
Interface for immutable 3x3 matrices. Provides specific operations for 3D transformations without translation.