From dcb1b0859779fc40aac3413086489763029b5c23 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Mon, 5 Jun 2023 07:29:17 +0200 Subject: [PATCH] fix circular fill (#2350) --- lib/stitches/circular_fill.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/stitches/circular_fill.py b/lib/stitches/circular_fill.py index 9a4d6fbc0..e63f56078 100644 --- a/lib/stitches/circular_fill.py +++ b/lib/stitches/circular_fill.py @@ -118,7 +118,7 @@ def _get_start_end_sequence(outline, start, end): def path_to_stitches(path, travel_graph, fill_stitch_graph, running_stitch_length, running_stitch_tolerance, skip_last): - path = collapse_sequential_outline_edges(path) + path = collapse_sequential_outline_edges(path, fill_stitch_graph) stitches = [] @@ -144,6 +144,6 @@ def path_to_stitches(path, travel_graph, fill_stitch_graph, running_stitch_lengt travel_graph.remove_edges_from(fill_stitch_graph[edge[0]][edge[1]]['segment'].get('underpath_edges', [])) else: - stitches.extend(travel(travel_graph, edge[0], edge[1], running_stitch_length, running_stitch_tolerance, skip_last)) + stitches.extend(travel(travel_graph, edge, running_stitch_length, running_stitch_tolerance, skip_last)) return stitches