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.
|
Modifier and Type | Method and Description |
---|---|
SimpleTriangle |
IIncrementalTinNavigator.getContainingTriangle(double x,
double y)
Gets a triangle from the TIN that contains the specified coordinate
point (if any).
|
SimpleTriangle |
SimpleTriangleIterator.next() |
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
Iterable<SimpleTriangle> |
SemiVirtualIncrementalTin.triangles() |
Modifier and Type | Method and Description |
---|---|
Iterable<SimpleTriangle> |
IncrementalTin.triangles() |
Modifier and Type | Method and Description |
---|---|
static void |
TriangleCollector.visitSimpleTriangles(IIncrementalTin tin,
Consumer<SimpleTriangle> consumer)
Identify all valid triangles in the specified TIN and
provide them to the application-supplied Consumer.
|
Copyright © 2021. All rights reserved.