isIntersects method

bool isIntersects()

Returns true if isDisjoint returns false.

@return true if the two Geometrys related by this IntersectionMatrix intersect

Implementation

bool isIntersects() {
  return !isDisjoint();
}