ComponentOne Bitmap for WPF
C1.WPF.DX.4.5.2 Assembly / C1.Util.DX Namespace / Matrix3x2 Structure / Matrix3x2 Constructor / Matrix3x2 Constructor(Single,Single,Single,Single,Single,Single)
The value to assign at row 1 column 1 of the matrix.
The value to assign at row 1 column 2 of the matrix.
The value to assign at row 2 column 1 of the matrix.
The value to assign at row 2 column 2 of the matrix.
The value to assign at row 3 column 1 of the matrix.
The value to assign at row 3 column 2 of the matrix.

In This Topic
    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 M11 As Single, _
       ByVal M12 As Single, _
       ByVal M21 As Single, _
       ByVal M22 As Single, _
       ByVal M31 As Single, _
       ByVal M32 As Single _
    )
    public Matrix3x2( 
       float M11,
       float M12,
       float M21,
       float M22,
       float M31,
       float M32
    )

    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