checkIntersectionWithLineStrings method

void checkIntersectionWithLineStrings(
  1. List lines
)

Implementation

void checkIntersectionWithLineStrings(List lines) {
  for (Iterator i = lines.iterator; i.moveNext();) {
    LineString testLine = i.current as LineString;
    checkIntersectionWithSegments(testLine);
    if (hasIntersection) return;
  }
}