MatrixMultiply |
Top Previous Next |
Syntax:
MatrixMultiply(MATRIX4 out, MATRIX4 m1, MATRIX4 m2)
Purpose: Determines the product of two matrices.
Parameters: out - Matrix to copy the result to. m1 - First matrix m2 - Second matrix
Returned value: None.
Application: MATRIX4 matpos, matrot, matresult
Additional Info: MatrixMultiply is used to combine the transformations of separate matrices into a resultant matrix.
|