Click or drag to resize
DigitalRuneMatrix44D Constructor (Matrix33D, Vector3D)
Initializes a new instance of the Matrix44D struct.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public Matrix44D(
	Matrix33D minor,
	Vector3D translation
)

Parameters

minor
Type: DigitalRune.Mathematics.AlgebraMatrix33D
The upper left 3x3 submatrix.
translation
Type: DigitalRune.Mathematics.AlgebraVector3D
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