| Matrix44F Constructor (Matrix33F, Vector3F) |
Initializes a new instance of the
Matrix44F struct.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public Matrix44F(
Matrix33F minor,
Vector3F translation
)
Public Sub New (
minor As Matrix33F,
translation As Vector3F
)
public:
Matrix44F(
Matrix33F minor,
Vector3F translation
)
new :
minor : Matrix33F *
translation : Vector3F -> Matrix44F
Parameters
- minor
- Type: DigitalRune.Mathematics.AlgebraMatrix33F
The upper left 3x3 submatrix. - translation
- Type: DigitalRune.Mathematics.AlgebraVector3F
The translation vector.
Remarks
The upper left 3x3 submatrix is initialized with
minor. The elements
M03,
M13,
M23 are initialized with the elements of
translation.
M33 is set to 1 and all other matrix elements
are set to 0.
See Also