[]
Scales a matrix by the given value.
public static Matrix4x4 Multiply(Matrix4x4 left, float right)
Public Shared Function Multiply(left As Matrix4x4, right As Single) As Matrix4x4
| Type | Name | Description |
|---|---|---|
| Matrix4x4 | left | The matrix to scale. |
| float | right | The amount by which to scale. |
| Type | Description |
|---|---|
| Matrix4x4 | The scaled matrix. |
Determines the product of two matrices (same as MatrixProduct).
public static Matrix4x4 Multiply(ref Matrix4x4 left, ref Matrix4x4 right)
Public Shared Function Multiply(ByRef left As Matrix4x4, ByRef right As Matrix4x4) As Matrix4x4
| Type | Name | Description |
|---|---|---|
| Matrix4x4 | left | The first matrix to multiply. |
| Matrix4x4 | right | The second matrix to multiply. |
| Type | Description |
|---|---|
| Matrix4x4 | The product of the two matrices. |