summaryrefslogtreecommitdiff
path: root/lib/stitches/point_transfer.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stitches/point_transfer.py')
-rw-r--r--lib/stitches/point_transfer.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/stitches/point_transfer.py b/lib/stitches/point_transfer.py
index a01e69cd..cf4597dd 100644
--- a/lib/stitches/point_transfer.py
+++ b/lib/stitches/point_transfer.py
@@ -1,10 +1,10 @@
-from shapely.geometry import Point, MultiPoint
-from shapely.geometry.polygon import LineString, LinearRing
+import math
from collections import namedtuple
+
+from shapely.geometry import LinearRing, LineString, MultiPoint, Point
from shapely.ops import nearest_points
-import math
-from ..stitches import constants
-from ..stitches import sample_linestring
+
+from ..stitches import constants, sample_linestring
"""This file contains routines which shall project already selected points for stitching to remaining
unstitched lines in the neighborhood to create a regular pattern of points."""