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