multiply method

multiply

Multiplies this matrix by another matrix.

def multiply(self, matrix):
    ...
ParameterTypeDescription
matrixIMatrixThe matrix to multiply by.

multiply

Multiplies this matrix by another matrix in the specified order.

def multiply(self, matrix, order):
    ...
ParameterTypeDescription
matrixIMatrixThe matrix to multiply by.
orderSvgMatrixOrderThe order in which multiplication is applied.

See Also