AddFace3 method

void AddFace3(
  1. int a,
  2. int b,
  3. int c, [
  4. bool reverse = false,
])

Implementation

void AddFace3(int a, int b, int c, [bool reverse = false]) {
  assert(pointsOnly == false, "pointsOnly must be false");
  faces3.add(reverse ? Face3(c, b, a) : Face3(a, b, c));
}