[]
Determines the product of two matrices.
public Matrix Multiply(Matrix rightMatrix)
Public Function Multiply(rightMatrix As Matrix) As Matrix
Type | Name | Description |
---|---|---|
Matrix | rightMatrix | The second matrix to multiply. |
Type | Description |
---|---|
Matrix | The product of the two matrices. |
public Matrix3x2 Multiply(Matrix3x2 rightMatrix)
Public Function Multiply(rightMatrix As Matrix3x2) As Matrix3x2
Type | Name | Description |
---|---|---|
Matrix3x2 | rightMatrix | The second matrix to multiply. |