checkInteriorIntersectionsSS method

void checkInteriorIntersectionsSS(
  1. SegmentString ss0,
  2. SegmentString ss1
)

Implementation

void checkInteriorIntersectionsSS(SegmentString ss0, SegmentString ss1) {
  List<Coordinate> pts0 = ss0.getCoordinates();
  List<Coordinate> pts1 = ss1.getCoordinates();
  for (int i0 = 0; i0 < pts0.length - 1; i0++) {
    for (int i1 = 0; i1 < pts1.length - 1; i1++) {
      checkInteriorIntersectionsWithIndex(ss0, i0, ss1, i1);
    }
  }
}