| Matrix33DDivision Operator |
Divides a matrix by a scalar.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static Matrix33D operator /(
Matrix33D matrix,
double scalar
)
Public Shared Operator / (
matrix As Matrix33D,
scalar As Double
) As Matrix33D
public:
static Matrix33D operator /(
Matrix33D matrix,
double scalar
)
static let inline (/)
matrix : Matrix33D *
scalar : float : Matrix33D
Parameters
- matrix
- Type: DigitalRune.Mathematics.AlgebraMatrix33D
The matrix. - scalar
- Type: SystemDouble
The scalar.
Return Value
Type:
Matrix33DThe matrix with each element divided by scalar.
See Also