isDisjoint method

bool isDisjoint()

Returns true if this IntersectionMatrix is FFFF***.

@return true if the two Geometrys related by this IntersectionMatrix are disjoint

Implementation

bool isDisjoint() {
  return matrix[Location.INTERIOR][Location.INTERIOR] == Dimension.FALSE &&
      matrix[Location.INTERIOR][Location.BOUNDARY] == Dimension.FALSE &&
      matrix[Location.BOUNDARY][Location.INTERIOR] == Dimension.FALSE &&
      matrix[Location.BOUNDARY][Location.BOUNDARY] == Dimension.FALSE;
}