diff options
| author | Kaalleen <reni@allenka.de> | 2022-02-18 15:36:01 +0100 |
|---|---|---|
| committer | Kaalleen <reni@allenka.de> | 2022-05-04 19:10:23 +0200 |
| commit | 515ed3ea2fc8357482527d6e4a170db154baa205 (patch) | |
| tree | 7278a32c7c799a05aaa9bce1230914984f3d12d3 /lib/stitches/point_transfer.py | |
| parent | d514eac81937bb64815239dd3aa96e38d6556a32 (diff) | |
separate guided fill methods
Diffstat (limited to 'lib/stitches/point_transfer.py')
| -rw-r--r-- | lib/stitches/point_transfer.py | 10 |
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.""" |
