| Matrix44F Conversion (Matrix44F to Matrix) |
Performs an conversion from
Matrix44F (DigitalRune Mathematics) to
Matrix (XNA Framework).
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static explicit operator Matrix (
Matrix44F matrix
)
Public Shared Narrowing Operator CType (
matrix As Matrix44F
) As Matrix
static explicit operator Matrix (
Matrix44F matrix
)
F# does not support the declaration of new casting operators.
Parameters
- matrix
- Type: DigitalRune.Mathematics.AlgebraMatrix44F
The Matrix44F (DigitalRune Mathematics).
Return Value
Type:
MatrixThe
Matrix (XNA Framework).
Remarks
DigitalRune Mathematics uses column vectors whereas the XNA Framework uses row vectors. By
converting a Matrix44F (DigitalRune Mathematics) to Matrix (XNA
Framework) the matrix is automatically transposed.
This method is available only in the XNA-compatible build of the
DigitalRune.Mathematics.dll.
See Also