multiply method

multiply

Multiplies this matrix by the matrix specified by the matrix in default (Prepend) order.

def multiply(self, matrix):
    ...
ParameterTypeDescription
matrixaspose.pydrawing.drawing2d.MatrixThe matrix.

multiply

Multiplies this matrix by the matrix specified by the matrix in default (Prepend) order.

def multiply(self, matrix):
    ...
ParameterTypeDescription
matrixXpsMatrixThe matrix.

multiply

Multiplies this matrix by the matrix specified by the matrix in order specified by matrix_order.

def multiply(self, matrix, matrix_order):
    ...
ParameterTypeDescription
matrixaspose.pydrawing.drawing2d.MatrixThe matrix.
matrix_orderaspose.pydrawing.drawing2d.MatrixOrderThe order.

multiply

Multiplies this matrix by the matrix specified by the matrix in order specified by matrix_order.

def multiply(self, matrix, matrix_order):
    ...
ParameterTypeDescription
matrixXpsMatrixThe matrix.
matrix_orderaspose.pydrawing.drawing2d.MatrixOrderThe order.

See Also