A C E F G H I J M R S T U V 

T

toTriangles(Graph) - Static method in class jto.p5graphtheory.Graph
This returns a list of triangles that make up the delaunay triangulation of the vertices in the source Graph.
toTriangles(Collection<Vertex>) - Static method in class jto.p5graphtheory.Graph
This returns a list of triangles that make up the delaunay triangulation of the vertices in the source Graph.
Triangle - Class in jto.p5graphtheory
This is the Triangle class.

This represents a triangle and is included in this library for use with the static triangulation method of Graph.
Triangle() - Constructor for class jto.p5graphtheory.Triangle
This is the default constructor for Triangle objects.
The three vertices are set to null.
Triangle(Vertex, Vertex, Vertex) - Constructor for class jto.p5graphtheory.Triangle
This is the constructor for Triangle objects.
Triangulate - Class in jto.p5graphtheory
ported from p bourke's triangulate.c
http://astronomy.swin.edu.au/~pbourke/modelling/triangulate/

fjenett, 20th february 2005, offenbach-germany.
contact: http://www.florianjenett.de/

adapted to take a Vector of Point3f objects and return a Vector of Triangles (and generally be more Java-like and less C-like in usage - and probably less efficient but who's benchmarking?)

Tom Carden, tom (at) tom-carden.co.uk 17th January 2006

adapted to get rid of those ugly Vector and Point3f objects.
Triangulate() - Constructor for class jto.p5graphtheory.Triangulate
 
triangulate(Collection<Vertex>) - Static method in class jto.p5graphtheory.Triangulate
This takes a collection of Vertex objects and returns a Delaunay triangulation of them in the form of a list of triangles.
triangulatedGraph(Graph) - Static method in class jto.p5graphtheory.Graph
This will return a delaunay triangulation of the vertices in the source graph.
This uses the Triangulate library which can be found at:
http://wiki.processing.org/w/Triangulation

Note: This method does not take the edges of the source graph into consideration.
triangulatedGraph(Collection<Vertex>) - Static method in class jto.p5graphtheory.Graph
This will return a delaunay triangulation of the collection of vertices.
This uses the Triangulate library which can be found at:
http://wiki.processing.org/w/Triangulation
A C E F G H I J M R S T U V