Method Multiply
Multiply(Matrix, Matrix)
Determines the product of two matrices.
Declaration
public static Matrix Multiply(Matrix left, Matrix right)
Parameters
| Type | Name | Description |
|---|---|---|
| Matrix | left | The first matrix to multiply. |
| Matrix | right | The second matrix to multiply. |
Returns
| Type | Description |
|---|---|
| Matrix | The product of the two matrices. |
Multiply(Matrix, Single)
Scales a matrix by the given value.
Declaration
public static Matrix Multiply(Matrix left, float right)
Parameters
| Type | Name | Description |
|---|---|---|
| Matrix | left | The matrix to scale. |
| System.Single | right | The amount by which to scale. |
Returns
| Type | Description |
|---|---|
| Matrix | The scaled matrix. |