void |
LayerDelaunay.addLineString(org.locationtech.jts.geom.LineString line,
int attribute) |
|
void |
LayerTinfour.addLineString(org.locationtech.jts.geom.LineString lineToProcess,
int buildingID) |
Append a LineString into the triangulation
|
void |
LayerDelaunay.addPolygon(org.locationtech.jts.geom.Polygon newPoly,
int attribute) |
Append a polygon into the triangulation
|
void |
LayerTinfour.addPolygon(org.locationtech.jts.geom.Polygon newPoly,
int buildingId) |
Append a polygon into the triangulation
|
void |
LayerDelaunay.addVertex(org.locationtech.jts.geom.Coordinate vertexCoordinate) |
Append a vertex into the triangulation
|
void |
LayerTinfour.addVertex(org.locationtech.jts.geom.Coordinate vertexCoordinate) |
Append a vertex into the triangulation
|
List<Triangle> |
LayerDelaunay.getNeighbors() |
When the processDelaunay has been called, retrieve results Triangle link
triangles neighbor by their index.
|
List<Triangle> |
LayerTinfour.getNeighbors() |
retrieve results Triangle link
|
List<Triangle> |
LayerDelaunay.getTriangles() |
When the processDelaunay has been called, retrieve results Triangle link
unique vertices by their index.
|
List<Triangle> |
LayerTinfour.getTriangles() |
|
List<org.locationtech.jts.geom.Coordinate> |
LayerDelaunay.getVertices() |
When the processDelaunay has been called, retrieve results vertices
|
List<org.locationtech.jts.geom.Coordinate> |
LayerTinfour.getVertices() |
|
void |
LayerDelaunay.hintInit(org.locationtech.jts.geom.Envelope boundingBox,
long polygonCount,
long verticesCount) |
This optional method give an hint of the size of the delaunay process.
|
void |
LayerTinfour.hintInit(org.locationtech.jts.geom.Envelope bBox,
long polygonCount,
long verticesCount) |
|
void |
LayerDelaunay.processDelaunay() |
Launch delaunay process
|
void |
LayerTinfour.processDelaunay() |
Launch delaunay process
|
void |
LayerDelaunay.setMaxArea(Double maxArea) |
Set the maximum area in m² Call processDelauney after to take account of
this method.
|
void |
LayerTinfour.setMaxArea(Double maxArea) |
Set the maximum area in m²
|
void |
LayerDelaunay.setMinAngle(Double minAngle) |
Set the minimum angle, if you wish to enforce the quality of the delaunay
Call processDelauney after to take account of this method.
|