PEXMatrixMult2D(3) — Subroutines
Name
PEXMatrixMult2D
Synopsis
void PEXMatrixMult2D(PEXMatrix3x3 matrix1, PEXMatrix3x3 matrix2, PEXMatrix3x3 matrix_return)
Arguments
matrix1first matrix to be multiplied
matrix2second matrix to be multiplied
matrix_return
matrix into which result is stored
Returns
None
Description
Performs a 3X3 matrix multiplication: matrix = matrix1 X matrix2.
If the return matrix is the same as one of the input matrices, the function will overwrite the input values with the multiplied values.
Errors
None
See Also
PEXMatrixMult