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