Matrix4 Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Matrix4(Vector4, Vector4, Vector4, Vector4) |
Constructs a new instance. |
Matrix4(Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single) |
Constructs a new instance. |
Matrix4(Vector4, Vector4, Vector4, Vector4)
Constructs a new instance.
public Matrix4 (OpenTK.Vector4 row0, OpenTK.Vector4 row1, OpenTK.Vector4 row2, OpenTK.Vector4 row3);
new OpenTK.Matrix4 : OpenTK.Vector4 * OpenTK.Vector4 * OpenTK.Vector4 * OpenTK.Vector4 -> OpenTK.Matrix4
Parameters
- row0
- Vector4
Top row of the matrix
- row1
- Vector4
Second row of the matrix
- row2
- Vector4
Third row of the matrix
- row3
- Vector4
Bottom row of the matrix
Applies to
Matrix4(Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single)
Constructs a new instance.
public Matrix4 (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 OpenTK.Matrix4 : single * single * single * single * single * single * single * single * single * single * single * single * single * single * single * single -> OpenTK.Matrix4
Parameters
- m00
- Single
First item of the first row of the matrix.
- m01
- Single
Second item of the first row of the matrix.
- m02
- Single
Third item of the first row of the matrix.
- m03
- Single
Fourth item of the first row of the matrix.
- m10
- Single
First item of the second row of the matrix.
- m11
- Single
Second item of the second row of the matrix.
- m12
- Single
Third item of the second row of the matrix.
- m13
- Single
Fourth item of the second row of the matrix.
- m20
- Single
First item of the third row of the matrix.
- m21
- Single
Second item of the third row of the matrix.
- m22
- Single
Third item of the third row of the matrix.
- m23
- Single
First item of the third row of the matrix.
- m30
- Single
Fourth item of the fourth row of the matrix.
- m31
- Single
Second item of the fourth row of the matrix.
- m32
- Single
Third item of the fourth row of the matrix.
- m33
- Single
Fourth item of the fourth row of the matrix.