PEXMatrixMult2D Utility


Synopsis

 
   void PEXMatrixMult2D(
        PEXMatrix3x3 matrix1,
        PEXMatrix3x3 matrix2,
        PEXMatrix3x3 matrix_return
   )
 

Arguments

matrix1
First matrix to be multiplied.

matrix2
Second matrix to be multiplied.

matrix_return
Matrix into which result is stored.

Returns

None.

Description

Invoke PEXMatrixMult2D to perform a 3x3 matrix multiplication:

matrix_return = matrix1 x matrix2.

If the return matrix is the same as one of the input matrices, then this utility overwrites the input values with the multiplied values.

Errors

None.

See Also

For a list of modeling transformation utilities, see Modeling Transformation Utilities. For a list of related topics, see PEXlib Utilities.