| Matrix44F Constructor (Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single) |
Initializes a new instance of the
Matrix44F class.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public Matrix44F(
float m00,
float m01,
float m02,
float m03,
float m10,
float m11,
float m12,
float m13,
float m20,
float m21,
float m22,
float m23,
float m30,
float m31,
float m32,
float m33
)
Public Sub New (
m00 As Single,
m01 As Single,
m02 As Single,
m03 As Single,
m10 As Single,
m11 As Single,
m12 As Single,
m13 As Single,
m20 As Single,
m21 As Single,
m22 As Single,
m23 As Single,
m30 As Single,
m31 As Single,
m32 As Single,
m33 As Single
)
public:
Matrix44F(
float m00,
float m01,
float m02,
float m03,
float m10,
float m11,
float m12,
float m13,
float m20,
float m21,
float m22,
float m23,
float m30,
float m31,
float m32,
float m33
)
new :
m00 : float32 *
m01 : float32 *
m02 : float32 *
m03 : float32 *
m10 : float32 *
m11 : float32 *
m12 : float32 *
m13 : float32 *
m20 : float32 *
m21 : float32 *
m22 : float32 *
m23 : float32 *
m30 : float32 *
m31 : float32 *
m32 : float32 *
m33 : float32 -> Matrix44F
Parameters
- m00
- Type: SystemSingle
The element in the first row, first column. - m01
- Type: SystemSingle
The element in the first row, second column. - m02
- Type: SystemSingle
The element in the first row, third column. - m03
- Type: SystemSingle
The element in the first row, fourth column. - m10
- Type: SystemSingle
The element in the second row, first column. - m11
- Type: SystemSingle
The element in the second row, second column. - m12
- Type: SystemSingle
The element in the second row, third column. - m13
- Type: SystemSingle
The element in the second row, fourth column. - m20
- Type: SystemSingle
The element in the third row, first column. - m21
- Type: SystemSingle
The element in the third row, second column. - m22
- Type: SystemSingle
The element in the third row, third column. - m23
- Type: SystemSingle
The element in the third row, fourth column. - m30
- Type: SystemSingle
The element in the fourth row, first column - m31
- Type: SystemSingle
The element in the fourth row, second column - m32
- Type: SystemSingle
The element in the fourth row, third column - m33
- Type: SystemSingle
The element in the fourth row, fourth column
See Also