multiply method
multiply
Multiplies this matrix by another matrix.
def multiply(self, matrix):
...
Parameter | Type | Description |
---|---|---|
matrix | IMatrix | The matrix to multiply by. |
multiply
Multiplies this matrix by another matrix in the specified order.
def multiply(self, matrix, order):
...
Parameter | Type | Description |
---|---|---|
matrix | IMatrix | The matrix to multiply by. |
order | WebMatrixOrder | The order in which multiplication is applied. |
See Also
- module
aspose.html.drawing
- class
IMatrix