Matrix3x2 Constructor(Single,Single,Single,Single,Single,Single)
In This Topic
Initializes a new instance of the
Matrix3x2 struct.
Syntax
'Declaration
Public Function New( _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single _
)
public Matrix3x2(
System.float ,
System.float ,
System.float ,
System.float ,
System.float ,
System.float
)
Parameters
- M11
- The value to assign at row 1 column 1 of the matrix.
- M12
- The value to assign at row 1 column 2 of the matrix.
- M21
- The value to assign at row 2 column 1 of the matrix.
- M22
- The value to assign at row 2 column 2 of the matrix.
- M31
- The value to assign at row 3 column 1 of the matrix.
- M32
- The value to assign at row 3 column 2 of the matrix.
See Also