17 IndexedTri() {
a =
b =
c = std::numeric_limits<unsigned>::max(); }
18 IndexedTri(
unsigned v1,
unsigned v2,
unsigned v3) {
a = v1;
b = v2;
c = v3; }
40 else if (
b == t.
b &&
c < t.
c)
unsigned a
Index of the first vertex of the triangle.
Definition: IndexedTri.h:24
IndexedTri & reverse()
Reverses the orientation of the triangle.
Definition: IndexedTri.h:21
An indexed triangle.
Definition: IndexedTri.h:15
unsigned c
Index of the third vertex of the triangle.
Definition: IndexedTri.h:30
unsigned b
Index of the second vertex of the triangle.
Definition: IndexedTri.h:27