Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / UtilityEx Class / ConvexHull2D Method / ConvexHull2D(IList<Point2D>,Boolean) Method
The 2D point list
When true, the resulting array of points is sorted.

In This Topic
    ConvexHull2D(IList<Point2D>,Boolean) Method
    In This Topic
    Computes the Convex Hull of a set of 2D points.
    Syntax
    'Declaration
     
    Public Overloads Shared Function ConvexHull2D( _
       ByVal points As IList(Of Point2D), _
       ByVal sorted As Boolean _
    ) As Point2D()
    public static Point2D[] ConvexHull2D( 
       IList<Point2D> points,
       bool sorted
    )

    Parameters

    points
    The 2D point list
    sorted
    When true, the resulting array of points is sorted.

    Return Value

    The resulting array of 2D points.
    See Also