[]
Multiplies the left matrix by the right matrix, returns the resulting matrix in the output parameter.
public static void Multiply(this Matrix left, ref Matrix right, out Matrix result)
Type | Name | Description |
---|---|---|
Matrix | left | The first matrix to multiply. |
Matrix | right | The matrix to multiply the left by (the right matrix in the multiplication). |
Matrix | result | The product of multiplying the two matrices. |
Multiplies the left matrix by the right matrix.
public static Matrix Multiply(this Matrix left, Matrix right)
Type | Name | Description |
---|---|---|
Matrix | left | The first matrix to multiply. |
Matrix | right | The matrix to multiply the left by (the right matrix in the multiplication). |
Type | Description |
---|---|
Matrix | The product of multiplying the two matrices. |