Class DelaunayTriangle

All Implemented Interfaces:
Iterable<DelaunayVertex>, Collection<DelaunayVertex>, Set<DelaunayVertex>

public class DelaunayTriangle extends ArraySet<DelaunayVertex>
A DelaunayTriangle is an immutable Set of exactly three Pnts. All Set operations are available. Individual vertices can be accessed via iterator() and also via triangle.get(index). Note that, even if two triangles have the same vertex set, they are *different* triangles. Methods equals() and hashCode() are consistent with this rule.
Author:
Paul Chew Created December 2007. Replaced general simplices with geometric triangle.