Find convex hull for the given set of points.

Namespace:  AForge.Math.Geometry
Assembly:  AForge.Math (in AForge.Math.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
List<IntPoint> FindHull(
	List<IntPoint> points
)

Parameters

points
Type: System.Collections.Generic..::.List<(Of <(IntPoint>)>)
Set of points to search convex hull for.

Return Value

Returns set of points, which form a convex hull for the given points.

See Also