| Matrix22F Constructor (Single, Single, Single, Single) |
Initializes a new instance of the
Matrix22F class.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public Matrix22F(
float m00,
float m01,
float m10,
float m11
)
Public Sub New (
m00 As Single,
m01 As Single,
m10 As Single,
m11 As Single
)
public:
Matrix22F(
float m00,
float m01,
float m10,
float m11
)
new :
m00 : float32 *
m01 : float32 *
m10 : float32 *
m11 : float32 -> Matrix22F
Parameters
- m00
- Type: SystemSingle
The element in the first row, first column. - m01
- Type: SystemSingle
The element in the first row, second column. - m10
- Type: SystemSingle
The element in the second row, first column. - m11
- Type: SystemSingle
The element in the second row, second column.
See Also