multiply method

multiply

Performs matrix multiplication. This matrix is post-multiplied by another matrix, returning the resulting new matrix.

Returns

The resulting matrix.

def multiply(self, second_matrix):
    ...
ParameterTypeDescription
second_matrixSVGMatrixThe matrix which is post-multiplied to this matrix.

See Also