Class | Description |
---|---|
Edge |
This is the
Edge class.
This class models an undirected edge for a graph. |
Graph |
This is the
Graph class. |
Graph.DisjointSet<E> |
This is the
DisjointSet class. |
Triangle |
This is the
Triangle class.
This represents a triangle and is included in this library for use
with the static triangulation method of Graph . |
Triangulate |
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.
|
Vertex |
This is the
Vertex class.
This represents a vertex in a graph. |