Package rope.mesh

Class R_Delaunay_Triangle

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

public class R_Delaunay_Triangle extends R_ArraySet<R_Delaunay_Vertex>
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.