|
GrahamConvexHullFindHull Method
|
Find convex hull for the given set of points.
Namespace:
Accord.Math.Geometry
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public List<IntPoint> FindHull(
List<IntPoint> points
)
Public Function FindHull (
points As List(Of IntPoint)
) As List(Of IntPoint)
Request Example
View SourceParameters
- points
- Type: System.Collections.GenericListIntPoint
Set of points to search convex hull for.
Return Value
Type:
ListIntPointReturns set of points, which form a convex hull for the given
points.
The first point in the list is the point with lowest X coordinate (and with lowest Y if there are
several points with the same X value). Points are provided in counter clockwise order
(
Cartesian
coordinate system).
Implements
IConvexHullAlgorithmFindHull(ListIntPoint)See Also