Click or drag to resize
DigitalRuneMatrix44F Constructor (Matrix33F, Vector3F)
Initializes a new instance of the Matrix44F struct.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public Matrix44F(
	Matrix33F minor,
	Vector3F translation
)

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