Matrix Constructor (Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single, Single) |
Initializes a new instance of the
Matrix struct.
Namespace: SampSharp.GameModeAssembly: SampSharp.GameMode (in SampSharp.GameMode.dll) Version: 0.7.6221.37952
Syntaxpublic Matrix(
float m11,
float m12,
float m13,
float m14,
float m21,
float m22,
float m23,
float m24,
float m31,
float m32,
float m33,
float m34,
float m41,
float m42,
float m43,
float m44
)
Public Sub New (
m11 As Single,
m12 As Single,
m13 As Single,
m14 As Single,
m21 As Single,
m22 As Single,
m23 As Single,
m24 As Single,
m31 As Single,
m32 As Single,
m33 As Single,
m34 As Single,
m41 As Single,
m42 As Single,
m43 As Single,
m44 As Single
)
Parameters
- m11
- Type: SystemSingle
The first row and first column value. - m12
- Type: SystemSingle
The first row and second column value. - m13
- Type: SystemSingle
The first row and third column value. - m14
- Type: SystemSingle
The first row and fourth column value. - m21
- Type: SystemSingle
The second row and first column value. - m22
- Type: SystemSingle
The second row and second column value. - m23
- Type: SystemSingle
The second row and third column value. - m24
- Type: SystemSingle
The second row and fourth column value. - m31
- Type: SystemSingle
The third row and first column value. - m32
- Type: SystemSingle
The third row and second column value. - m33
- Type: SystemSingle
The third row and third column value. - m34
- Type: SystemSingle
The third row and fourth column value. - m41
- Type: SystemSingle
The fourth row and first column value. - m42
- Type: SystemSingle
The fourth row and second column value. - m43
- Type: SystemSingle
The fourth row and third column value. - m44
- Type: SystemSingle
The fourth row and fourth column value.
See Also