add3 method

void add3(
  1. int geomIndex,
  2. int posIndex,
  3. int location
)

Implementation

void add3(int geomIndex, int posIndex, int location) {
  if (location == Location.INTERIOR) depth[geomIndex][posIndex]++;
}