Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Svg Namespace / SvgMatrix Class / SvgMatrix Constructor / SvgMatrix Constructor(Double,Double,Double,Double,Double,Double)
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
    SvgMatrix Constructor(Double,Double,Double,Double,Double,Double)
    In This Topic
    Initializes a new instance of the SvgMatrix class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal m11 As System.Double, _
       ByVal m12 As System.Double, _
       ByVal m21 As System.Double, _
       ByVal m22 As System.Double, _
       ByVal m31 As System.Double, _
       ByVal m32 As System.Double _
    )
    public SvgMatrix( 
       System.double m11,
       System.double m12,
       System.double m21,
       System.double m22,
       System.double m31,
       System.double 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