Modifier and Type | Method and Description |
---|---|
static java.util.Collection<Triangle> |
Graph.toTriangles(java.util.Collection<Vertex> vertices)
This returns a list of triangles that make up the delaunay triangulation
of the vertices in the source
Graph . |
static java.util.Collection<Triangle> |
Graph.toTriangles(Graph graph)
This returns a list of triangles that make up the delaunay triangulation
of the vertices in the source
Graph . |
static java.util.ArrayList<Triangle> |
Triangulate.triangulate(java.util.Collection<Vertex> vertexCollection)
This takes a collection of
Vertex objects and
returns a Delaunay triangulation of them in the form of a list of
triangles. |
Modifier and Type | Method and Description |
---|---|
boolean |
Triangle.sharesVertex(Triangle other)
This tests to see if any of the vertices of this
Triangle
are the same as any of the vertices of another Triangle . |