Multiplies two matrices.
Namespace:
Aurigma.GraphicsMill.Transforms
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub Multiply ( _ matrix As Matrix, _ order As MatrixOrder _ )
public void Multiply( Matrix matrix, MatrixOrder order )
Note, matrix multiplication is not commutative. It means that the result depends on the order of the matrix. In other words, if A and B are two matrices, the matrix A*B is not equal to the matrix B*A. That's why you should use the order argument to specify the matrix order.