diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-08-17 17:28:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-17 17:28:08 +0200 |
| commit | 404c483cc7c220b2521ab06011bf612303ca2029 (patch) | |
| tree | 2d8da8371ff18fc31a9591e470ad3433a9cefdbf /lib/stitches/tartan_fill.py | |
| parent | 5e387d76a77d9f4a780a4e8ee4ac9f88f842f512 (diff) | |
fix fills without underpath and bad start-end positions (#3141)
Diffstat (limited to 'lib/stitches/tartan_fill.py')
| -rw-r--r-- | lib/stitches/tartan_fill.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stitches/tartan_fill.py b/lib/stitches/tartan_fill.py index ad3e0370..5eeed473 100644 --- a/lib/stitches/tartan_fill.py +++ b/lib/stitches/tartan_fill.py @@ -781,7 +781,7 @@ def _segments_to_stitch_group( return None graph_make_valid(fill_stitch_graph) travel_graph = build_travel_graph(fill_stitch_graph, shape, fill.angle, False) - path = find_stitch_path(fill_stitch_graph, travel_graph, starting_point, ending_point) + path = find_stitch_path(fill_stitch_graph, travel_graph, starting_point, ending_point, False) stitches = path_to_stitches( shape, path, |
