summaryrefslogtreecommitdiff
path: root/lib/stitches
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2023-02-08 14:39:25 -0500
committerLex Neva <github.com@lexneva.name>2023-02-20 15:27:55 -0500
commit9ea61ef3f33b76f199843fff82d1d624903aa11d (patch)
tree2265b757d505ac3c66541d6c33b65aff714fa6a7 /lib/stitches
parent8dde33d867afce7ea4aa212dfce60e9e526bbc1c (diff)
remove buffer concept
Diffstat (limited to 'lib/stitches')
-rw-r--r--lib/stitches/meander_fill.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py
index 5f399158..ca3b7d69 100644
--- a/lib/stitches/meander_fill.py
+++ b/lib/stitches/meander_fill.py
@@ -22,7 +22,7 @@ def meander_fill(fill, shape, shape_index, starting_point, ending_point):
debug.log(f"tile name: {tile.name}")
debug.log_line_strings(lambda: ensure_geometry_collection(shape.boundary).geoms, 'Meander shape')
- graph = tile.to_graph(shape, fill.meander_scale, fill.meander_padding)
+ graph = tile.to_graph(shape, fill.meander_scale)
debug.log_graph(graph, 'Meander graph')
debug.log(lambda: f"graph connected? {nx.is_connected(graph)}")
start, end = find_starting_and_ending_nodes(graph, shape, starting_point, ending_point)