multiply method

multiply

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

def multiply(self, tx):
    ...
ParameterTypeDescription
txMatrixThe matrix to multiply with.

multiply

Multiplies this Matrix by the matrix specified in the matrix parameter, and in the order specified in the order parameter.

def multiply(self, tx, order):
    ...
ParameterTypeDescription
txMatrixThe tx. The tx. The tx.
orderMatrixOrderThe order. The order. The order.

See Also