Multiplies two matrices.
Namespace:
Aurigma.GraphicsMill.Transforms
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub Multiply ( _ matrix As Matrix _ )
public void Multiply( Matrix matrix )
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.
This overload prepends the matrix argument (i.e. left-sided multiplication is applied). If you need to apply right-sided multiplication, you should use the overloaded version of this method which enables you to specify the side you multiply from.