Multiply this matrix by another matrix. The default order is to prepend the matrix.
Syntax

[C#]

void Multiply(Matrix matrix);
void Multiply(Matrix matrix, MatrixOrder order);

[Visual Basic]

Sub Multiply(matrix As Matrix)
Sub Multiply(matrix As Matrix, order As MatrixOrder)
Params
Name Description
matrix The matrix that this should be multiplied by.
order Whether the passed matrix should be appended (this * matrix) or prepended (matrix * this).
Notes

None.

Example

None.