[]
Determines the product of two matrices.
public static Matrix operator *(Matrix leftMatrix, Matrix rightMatrix)
Public Shared Operator *(leftMatrix As Matrix, rightMatrix As Matrix) As Matrix
Type | Name | Description |
---|---|---|
Matrix | leftMatrix | The first matrix to multiply. |
Matrix | rightMatrix | The second matrix to multiply. |
Type | Description |
---|---|
Matrix | The product of the two matrices. |
public static Matrix3x2 operator *(Matrix leftMatrix, Matrix3x2 rightMatrix)
Public Shared Operator *(leftMatrix As Matrix, rightMatrix As Matrix3x2) As Matrix3x2
Type | Name | Description |
---|---|---|
Matrix | leftMatrix | The first matrix to multiply. |
Matrix3x2 | rightMatrix | The second matrix to multiply. |