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