Operator Division
Division(Matrix, Matrix)
Divides two matrices.
Declaration
public static Matrix operator /(Matrix left, Matrix right)
Parameters
| Type | Name | Description |
|---|---|---|
| Matrix | left | The first matrix to divide. |
| Matrix | right | The second matrix to divide. |
Returns
| Type | Description |
|---|---|
| Matrix | The quotient of the two matrices. |
Division(Matrix, Single)
Scales a matrix by a given value.
Declaration
public static Matrix operator /(Matrix left, float right)
Parameters
| Type | Name | Description |
|---|---|---|
| Matrix | left | The matrix to scale. |
| System.Single | right | The amount by which to scale. |
Returns
| Type | Description |
|---|---|
| Matrix | The scaled matrix. |