summaryrefslogtreecommitdiff
path: root/lib/stitches/auto_fill.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2022-05-01 16:31:51 -0400
committerKaalleen <reni@allenka.de>2022-05-04 19:18:33 +0200
commite6fcf11035d3d953c2b07e6d153a1225f79cb781 (patch)
tree24f51d070d49c62449dd7e580bdb59b58671daea /lib/stitches/auto_fill.py
parentfc3d05845a9e04a9dbe69e8ed6a025e3e77e6349 (diff)
fix some shapelydeprecations
Diffstat (limited to 'lib/stitches/auto_fill.py')
-rw-r--r--lib/stitches/auto_fill.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stitches/auto_fill.py b/lib/stitches/auto_fill.py
index a8118039..27328bab 100644
--- a/lib/stitches/auto_fill.py
+++ b/lib/stitches/auto_fill.py
@@ -90,7 +90,7 @@ def which_outline(shape, coords):
# fail sometimes.
point = shgeo.Point(*coords)
- outlines = list(shape.boundary)
+ outlines = list(shape.boundary.geoms)
outline_indices = list(range(len(outlines)))
closest = min(outline_indices,
key=lambda index: outlines[index].distance(point))
@@ -104,7 +104,7 @@ def project(shape, coords, outline_index):
This returns the distance along the outline at which the point resides.
"""
- outline = list(shape.boundary)[outline_index]
+ outline = list(shape.boundary.geoms)[outline_index]
return outline.project(shgeo.Point(*coords))
@@ -204,7 +204,7 @@ def tag_nodes_with_outline_and_projection(graph, shape, nodes):
def add_boundary_travel_nodes(graph, shape):
- for outline_index, outline in enumerate(shape.boundary):
+ for outline_index, outline in enumerate(shape.boundary.geoms):
prev = None
for point in outline.coords:
point = shgeo.Point(point)