Click or drag to resize
Accord.NET (logo)

IConvexHullAlgorithm Interface

Interface defining methods for algorithms, which search for convex hull of the specified points' set.

Namespace:  Accord.Math.Geometry
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public interface IConvexHullAlgorithm
Request Example View Source

The IConvexHullAlgorithm type exposes the following members.

Methods
  NameDescription
Public methodFindHull
Find convex hull for the given set of points.
Top
Remarks

The interface defines a method, which should be implemented by different classes performing convex hull search for specified set of points.

Note Note
All algorithms, implementing this interface, should follow two rules for the found convex hull:
  • the first point in the returned list is the point with lowest X coordinate (and with lowest Y if there are several points with the same X value);
  • points in the returned list are given in counter clockwise order (Cartesian coordinate system).

See Also