| Matrix44FSubtract Method |
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 Subtract(
Matrix44F minuend,
Matrix44F subtrahend
)
Public Shared Function Subtract (
minuend As Matrix44F,
subtrahend As Matrix44F
) As Matrix44F
public:
static Matrix44F Subtract(
Matrix44F minuend,
Matrix44F subtrahend
)
static member Subtract :
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