The Matrix4x4 type exposes the following members.

Operators

  NameDescription
Public operatorStatic memberAddition(Double, Matrix4x4)
value + matrix, adds a value to all matrix components
Public operatorStatic memberAddition(Matrix4x4, Double)
matrix + value, adds a value to all matrix components
Public operatorStatic memberAddition(Matrix4x4, Matrix4x4)
matrix + matrix, adds the values of two matrices component wise
Public operatorStatic memberDivision(Double, Matrix4x4)
value / matrix, divides a value by all matrix components
Public operatorStatic memberDivision(Matrix4x4, Double)
matrix / value, divides all matrix components with a value
Public operatorStatic memberEquality
Public operatorStatic memberInequality
Public operatorStatic memberLogicalNot
! matrix, calculates the inverse of the matrix optimized 4x4 matrix inversion using cramer's rule, found in the game engine http://www.ogre3d.org takes about 1,8ns to execute on intel core2 duo 2Ghz, the intel reference implementation (not assembly optimized) was about 2,2ns. http://www.intel.com/design/pentiumiii/sml/24504301.pdf
Public operatorStatic memberMultiply(Double, Matrix4x4)
value * matrix, multiplies all matrix components with a value
Public operatorStatic memberMultiply(Matrix4x4, Double)
matrix * value, multiplies all matrix components with a value
Public operatorStatic memberMultiply(Matrix4x4, Matrix4x4)
matrix * matrix, performs a matrix multiplication
Public operatorStatic memberMultiply(Matrix4x4, Vector2D)
matrix * 2d vector, applies a matrix transform to a 2d-vector, (x, y, 0, 1)
Public operatorStatic memberMultiply(Matrix4x4, Vector3D)
matrix * 3d vector, applies a matrix transform to a 3d-vector, (x, y, z, 1) and divides by w
Public operatorStatic memberMultiply(Matrix4x4, Vector4D)
matrix * 4d vector, applies a matrix transform to a 4d-vector
Public operatorStatic memberOnesComplement
~ matrix, calculates the determinant of the matrix
Public operatorStatic memberSubtraction(Double, Matrix4x4)
value - matrix, subtracts all matrix components from a value
Public operatorStatic memberSubtraction(Matrix4x4, Double)
matrix - value, subtracts a value from all matrix components
Public operatorStatic memberSubtraction(Matrix4x4, Matrix4x4)
matrix - matrix, subtracts the components of B from the components of A
Public operatorStatic memberUnaryNegation
- matrix, flips the sign off all matrix components
Public operatorStatic memberUnaryPlus
+ matrix, makes no changes to a matrix

See Also