Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

points
Type: System.Collections.GenericListIntPoint
Set of points to search convex hull for.

Return Value

Type: ListIntPoint
Returns 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