checkInteriorIntersections method

void checkInteriorIntersections()

Checks all pairs of segments for intersections at an interior point of a segment

Implementation

void checkInteriorIntersections() {
  for (SegmentString ss0 in segStrings) {
    for (SegmentString ss1 in segStrings) {
      checkInteriorIntersectionsSS(ss0, ss1);
    }
  }
}