summaryrefslogtreecommitdiff
path: root/lib/tartan/svg.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-08-17 17:28:08 +0200
committerGitHub <noreply@github.com>2024-08-17 17:28:08 +0200
commit404c483cc7c220b2521ab06011bf612303ca2029 (patch)
tree2d8da8371ff18fc31a9591e470ad3433a9cefdbf /lib/tartan/svg.py
parent5e387d76a77d9f4a780a4e8ee4ac9f88f842f512 (diff)
fix fills without underpath and bad start-end positions (#3141)
Diffstat (limited to 'lib/tartan/svg.py')
-rw-r--r--lib/tartan/svg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tartan/svg.py b/lib/tartan/svg.py
index a1f78fc9..0fd8b579 100644
--- a/lib/tartan/svg.py
+++ b/lib/tartan/svg.py
@@ -224,7 +224,7 @@ class TartanSvgGroup:
return []
graph_make_valid(fill_stitch_graph)
travel_graph = build_travel_graph(fill_stitch_graph, outline_shape, 0, 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)
return self._path_to_shapes(path, fill_stitch_graph, polygons, geometry_type, outline_shape)
def _path_to_shapes(