Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / Polygon2D Class / Polygon2D Constructor / Polygon2D Constructor(Point2D[],Point2D,Point2D)
The list of 2D points
The polygon's bounding rectangle min point
The polygon's bounding rectangle max point

In This Topic
    Polygon2D Constructor(Point2D[],Point2D,Point2D)
    In This Topic
    Points and bounding rectangle corners constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal points() As Point2D, _
       ByVal min As Point2D, _
       ByVal max As Point2D _
    )
    public Polygon2D( 
       Point2D[] points,
       Point2D min,
       Point2D max
    )

    Parameters

    points
    The list of 2D points
    min
    The polygon's bounding rectangle min point
    max
    The polygon's bounding rectangle max point
    See Also