[]
Scales a matrix by a given value.
public static Matrix4x4 operator *(float left, Matrix4x4 right)
Type | Name | Description |
---|---|---|
float | left | The amount by which to scale. |
Matrix4x4 | right | The matrix to scale. |
Type | Description |
---|---|
Matrix4x4 | The scaled matrix. |
Scales a matrix by a given value.
public static Matrix4x4 operator *(Matrix4x4 left, float right)
Type | Name | Description |
---|---|---|
Matrix4x4 | left | The matrix to scale. |
float | right | The amount by which to scale. |
Type | Description |
---|---|
Matrix4x4 | The scaled matrix. |
Multiplies two matricies.
public static Matrix4x4 operator *(Matrix4x4 left, Matrix4x4 right)
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 matricies. |