Interface Triangulation<P extends AbstractJavaPoint<P>,L extends AbstractJavaLine<P>,G extends AbstractJavaPolygon<P,L>>
-
- All Known Implementing Classes:
AbstractConstrainedDelaunayTriangulation
,ConstrainedDelaunayTriangulation2D
,ConstrainedDelaunayTriangulation3D
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Triangulation<P extends AbstractJavaPoint<P>,L extends AbstractJavaLine<P>,G extends AbstractJavaPolygon<P,L>>
Interface for writing a mesh to a file
- Since:
- 1.2
- Author:
- Christoph Praschl
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<G>
triangulate(List<P> points)
Triangulates a given list of points
-