[]
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)
Public Shared Sub Multiply(left As Matrix, ByRef right As Matrix, ByRef result As Matrix)
| 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)
Public Shared Function Multiply(left As Matrix, right As Matrix) As Matrix
| 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. |