[]
Scales a matrix by a given value.
public static Matrix3x2 operator *(float left, Matrix3x2 right)
| Type | Name | Description |
|---|---|---|
| float | left | The amount by which to scale. |
| Matrix3x2 | right | The matrix to scale. |
| Type | Description |
|---|---|
| Matrix3x2 | The scaled matrix. |
Scales a matrix by a given value.
public static Matrix3x2 operator *(Matrix3x2 left, float right)
| Type | Name | Description |
|---|---|---|
| Matrix3x2 | left | The matrix to scale. |
| float | right | The amount by which to scale. |
| Type | Description |
|---|---|
| Matrix3x2 | The scaled matrix. |
Calculates a matrix product for the given matrices.
public static Matrix3x2 operator *(Matrix3x2 left, Matrix3x2 right)
| Type | Name | Description |
|---|---|---|
| Matrix3x2 | left | The first matrix. |
| Matrix3x2 | right | The second matrix. |
| Type | Description |
|---|---|
| Matrix3x2 | The result of the matrix multiplication. |