Matrix.Multiply

Multiply(Matrix)

Multiplies this Matrix by the matrix specified in the matrix parameter, by prepending the specified Matrix.

public void Multiply(Matrix matrix)
ParameterTypeDescription
matrixMatrixThe Matrix by which this Matrix is to be multiplied.

See Also


Multiply(Matrix, MatrixOrder)

Multiplies this Matrix by the matrix specified in the matrix parameter, and in the order specified in the order parameter.

public void Multiply(Matrix matrix, MatrixOrder order)
ParameterTypeDescription
matrixMatrixThe Matrix by which this Matrix is to be multiplied.
orderMatrixOrderThe MatrixOrder that represents the order of the multiplication.

See Also