Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / Triangle Structure / Triangle Constructor
The triangle's first vertex.
The triangle's second vertex.
The triangle's third vertex.

In This Topic
    Triangle Constructor
    In This Topic
    Initializes a new instance of the Triangle struct from its three vertices.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal a As System.Drawing.PointF, _
       ByVal b As System.Drawing.PointF, _
       ByVal c As System.Drawing.PointF _
    )
    public Triangle( 
       System.Drawing.PointF a,
       System.Drawing.PointF b,
       System.Drawing.PointF c
    )

    Parameters

    a
    The triangle's first vertex.
    b
    The triangle's second vertex.
    c
    The triangle's third vertex.
    See Also