| Matrix44FSubtraction Operator |
Subtracts two matrices.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static Matrix44F operator -(
Matrix44F minuend,
Matrix44F subtrahend
)
Public Shared Operator - (
minuend As Matrix44F,
subtrahend As Matrix44F
) As Matrix44F
public:
static Matrix44F operator -(
Matrix44F minuend,
Matrix44F subtrahend
)
static let inline (-)
minuend : Matrix44F *
subtrahend : Matrix44F : Matrix44F
Parameters
- minuend
- Type: DigitalRune.Mathematics.AlgebraMatrix44F
The first matrix (minuend). - subtrahend
- Type: DigitalRune.Mathematics.AlgebraMatrix44F
The second matrix (subtrahend).
Return Value
Type:
Matrix44FThe difference of the two matrices.
See Also