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/sample_linestring.py | |
| parent | d514eac81937bb64815239dd3aa96e38d6556a32 (diff) | |
separate guided fill methods
Diffstat (limited to 'lib/stitches/sample_linestring.py')
| -rw-r--r-- | lib/stitches/sample_linestring.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/stitches/sample_linestring.py b/lib/stitches/sample_linestring.py index fb4bbc52..b2298984 100644 --- a/lib/stitches/sample_linestring.py +++ b/lib/stitches/sample_linestring.py @@ -1,11 +1,11 @@ -from shapely.geometry.polygon import LineString -from shapely.geometry import Point -from shapely.ops import substring import math -import numpy as np from enum import IntEnum -from ..stitches import constants -from ..stitches import point_transfer + +import numpy as np +from shapely.geometry import LineString, Point +from shapely.ops import substring + +from ..stitches import constants, point_transfer class PointSource(IntEnum): |
