ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX Namespace / Matrix4x4 Structure / Matrix4x4 Constructor / Matrix4x4 Constructor(Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,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 1 column 3 of the matrix.
The value to assign at row 1 column 4 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 2 column 3 of the matrix.
The value to assign at row 2 column 4 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.
The value to assign at row 3 column 3 of the matrix.
The value to assign at row 3 column 4 of the matrix.
The value to assign at row 4 column 1 of the matrix.
The value to assign at row 4 column 2 of the matrix.
The value to assign at row 4 column 3 of the matrix.
The value to assign at row 4 column 4 of the matrix.

In This Topic
    Matrix4x4 Constructor(Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single,Single)
    In This Topic
    Initializes a new instance of the Matrix4x4 struct.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal M11 As System.Single, _
       ByVal M12 As System.Single, _
       ByVal M13 As System.Single, _
       ByVal M14 As System.Single, _
       ByVal M21 As System.Single, _
       ByVal M22 As System.Single, _
       ByVal M23 As System.Single, _
       ByVal M24 As System.Single, _
       ByVal M31 As System.Single, _
       ByVal M32 As System.Single, _
       ByVal M33 As System.Single, _
       ByVal M34 As System.Single, _
       ByVal M41 As System.Single, _
       ByVal M42 As System.Single, _
       ByVal M43 As System.Single, _
       ByVal M44 As System.Single _
    )
    public Matrix4x4( 
       System.float M11,
       System.float M12,
       System.float M13,
       System.float M14,
       System.float M21,
       System.float M22,
       System.float M23,
       System.float M24,
       System.float M31,
       System.float M32,
       System.float M33,
       System.float M34,
       System.float M41,
       System.float M42,
       System.float M43,
       System.float M44
    )

    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.
    M13
    The value to assign at row 1 column 3 of the matrix.
    M14
    The value to assign at row 1 column 4 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.
    M23
    The value to assign at row 2 column 3 of the matrix.
    M24
    The value to assign at row 2 column 4 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.
    M33
    The value to assign at row 3 column 3 of the matrix.
    M34
    The value to assign at row 3 column 4 of the matrix.
    M41
    The value to assign at row 4 column 1 of the matrix.
    M42
    The value to assign at row 4 column 2 of the matrix.
    M43
    The value to assign at row 4 column 3 of the matrix.
    M44
    The value to assign at row 4 column 4 of the matrix.
    See Also