UtilityEx.ConvexHull2D (IList<Point2D>, Boolean) Method

Computes the Convex Hull of a set of 2D points.
Public Shared Function ConvexHull2D( _ 
ByVal points As IList(Of Point2D), _ 
ByVal sorted As Boolean
) As Point2D()
This language is not supported or no code example is available.
public static Point2D[] ConvexHull2D( 
IList<Point2D> points
bool sorted 
)
This language is not supported or no code example is available.

Parameters

points
IList<Point2D>

The 2D point list

sorted
bool

When true, the resulting array of points is sorted.

Return Value

Point2D[]

The resulting array of 2D points.

.NET Framework

Supported in: 4.8

In this article

Definition