computeIntersectionSnaps method

void computeIntersectionSnaps(
  1. List snapPts
)

Snaps segments to nodes created by segment intersections.

Implementation

void computeIntersectionSnaps(List snapPts) {
  for (Coordinate snapPt in snapPts) {
    HotPixel hotPixel = new HotPixel(snapPt, scaleFactor, li);
    pointSnapper.snapPX(hotPixel);
  }
}