checkEndPtVertexIntersections method

void checkEndPtVertexIntersections()

Checks for intersections between an endpoint of a segment string and an interior vertex of another segment string

Implementation

void checkEndPtVertexIntersections() {
  for (SegmentString ss in segStrings) {
    List<Coordinate> pts = ss.getCoordinates();
    checkEndPtVertexIntersections2(pts[0], segStrings);
    checkEndPtVertexIntersections2(pts[pts.length - 1], segStrings);
  }
}