From 515ed3ea2fc8357482527d6e4a170db154baa205 Mon Sep 17 00:00:00 2001 From: Kaalleen Date: Fri, 18 Feb 2022 15:36:01 +0100 Subject: separate guided fill methods --- lib/stitches/point_transfer.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/stitches/point_transfer.py') 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.""" -- cgit v1.2.3