ComponentOne Bitmap for WPF
C1.WPF.DX.4.6.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 Single, _
       ByVal M12 As Single, _
       ByVal M13 As Single, _
       ByVal M14 As Single, _
       ByVal M21 As Single, _
       ByVal M22 As Single, _
       ByVal M23 As Single, _
       ByVal M24 As Single, _
       ByVal M31 As Single, _
       ByVal M32 As Single, _
       ByVal M33 As Single, _
       ByVal M34 As Single, _
       ByVal M41 As Single, _
       ByVal M42 As Single, _
       ByVal M43 As Single, _
       ByVal M44 As Single _
    )
    public Matrix4x4( 
       float M11,
       float M12,
       float M13,
       float M14,
       float M21,
       float M22,
       float M23,
       float M24,
       float M31,
       float M32,
       float M33,
       float M34,
       float M41,
       float M42,
       float M43,
       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