Interface ConvexHullGenerator2D
-
- All Superinterfaces:
ConvexHullGenerator<Euclidean2D,Vector2D>
- All Known Implementing Classes:
MonotoneChain
public interface ConvexHullGenerator2D extends ConvexHullGenerator<Euclidean2D,Vector2D>
Interface for convex hull generators in the two-dimensional euclidean space.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConvexHull2D
generate(Collection<Vector2D> points)
Builds the convex hull from the set of input points.
-
-
-
Method Detail
-
generate
ConvexHull2D generate(Collection<Vector2D> points) throws MathIllegalStateException
Builds the convex hull from the set of input points.- Specified by:
generate
in interfaceConvexHullGenerator<Euclidean2D,Vector2D>
- Parameters:
points
- the set of input points- Returns:
- the convex hull
- Throws:
MathIllegalStateException
- if generator fails to generate a convex hull for the given set of input points
-
-