isInBoundary method

bool isInBoundary(
  1. int boundaryCount
)
override

Tests whether a point that lies in boundaryCount geometry component boundaries is considered to form part of the boundary of the parent geometry.

@param boundaryCount the number of component boundaries that this point occurs in @return true if points in this number of boundaries lie in the parent boundary

Implementation

bool isInBoundary(int boundaryCount) {
  return boundaryCount == 1;
}