Uses of Class
org.tinfour.common.SimpleTriangle
-
Packages that use SimpleTriangle Package Description org.tinfour.common Provides classes and interfaces that are common to multiple packages within the TinFour project.org.tinfour.semivirtual Provides classes and interfaces for creating a Triangulated Irregular Network (TIN) based on the Delaunay Triangulation specification and using a semi-virtual representation of edges to reduce memory requirements.org.tinfour.standard Provides classes and interfaces for creating a Triangulated Irregular Network (TIN) based on the Delaunay Triangulation specification.org.tinfour.utils Provides both high-level and general utilities for using the Tinfour packages.org.tinfour.utils.alphashape Supports of the creation of alpha shapes from the Delaunay triangulation. -
-
Uses of SimpleTriangle in org.tinfour.common
Methods in org.tinfour.common that return SimpleTriangle Modifier and Type Method Description SimpleTriangleIIncrementalTinNavigator. getContainingTriangle(double x, double y)Gets a triangle from the TIN that contains the specified coordinate point (if any).SimpleTriangleSimpleTriangleIterator. next()Methods in org.tinfour.common that return types with arguments of type SimpleTriangle Modifier and Type Method Description Iterable<SimpleTriangle>IIncrementalTin. triangles()Provides a convenience implementation that can be used with a Java enhanced-loop statement to access the set of SimpleTriangles implicit in the structure of the incremental TIN. -
Uses of SimpleTriangle in org.tinfour.semivirtual
Methods in org.tinfour.semivirtual that return types with arguments of type SimpleTriangle Modifier and Type Method Description Iterable<SimpleTriangle>SemiVirtualIncrementalTin. triangles() -
Uses of SimpleTriangle in org.tinfour.standard
Methods in org.tinfour.standard that return types with arguments of type SimpleTriangle Modifier and Type Method Description Iterable<SimpleTriangle>IncrementalTin. triangles() -
Uses of SimpleTriangle in org.tinfour.utils
Method parameters in org.tinfour.utils with type arguments of type SimpleTriangle Modifier and Type Method Description static voidTriangleCollector. visitSimpleTriangles(IIncrementalTin tin, Consumer<SimpleTriangle> consumer)Identify all valid triangles in the specified TIN and provide them to the application-supplied Consumer. -
Uses of SimpleTriangle in org.tinfour.utils.alphashape
Methods in org.tinfour.utils.alphashape that return types with arguments of type SimpleTriangle Modifier and Type Method Description Iterable<SimpleTriangle>AlphaShape. triangles()Provides an instance of an iterable that can be used to access the set of triangles interior to the alpha shape.
-