summaryrefslogtreecommitdiff
path: root/lib/stitches/circular_fill.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2023-05-10 09:02:17 +0200
committerGitHub <noreply@github.com>2023-05-10 09:02:17 +0200
commit9d5cc6013ef769718b47d64a558df7e4210505d1 (patch)
tree2231a4c373042704e0684c39b253c93b147d31ef /lib/stitches/circular_fill.py
parent97645751f67d2f76b1aadeb36152260a45c12e6a (diff)
circular fill bean: ignore travel stitches (#2281)
Diffstat (limited to 'lib/stitches/circular_fill.py')
-rw-r--r--lib/stitches/circular_fill.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/stitches/circular_fill.py b/lib/stitches/circular_fill.py
index 233e326e..9a4d6fbc 100644
--- a/lib/stitches/circular_fill.py
+++ b/lib/stitches/circular_fill.py
@@ -66,7 +66,11 @@ def circular_fill(shape,
segments = []
for line in intersection.geoms:
if isinstance(line, shgeo.LineString):
- segments.append(line.coords[:])
+ # use running stitch here to adjust the stitch length
+ coords = running_stitch([Stitch(point[0], point[1]) for point in line.coords],
+ running_stitch_length,
+ running_stitch_tolerance)
+ segments.append([(point.x, point.y) for point in coords])
fill_stitch_graph = build_fill_stitch_graph(shape, segments, starting_point, ending_point)
if not graph_is_valid(fill_stitch_graph, shape, running_stitch_length):
@@ -75,15 +79,14 @@ def circular_fill(shape,
travel_graph = build_travel_graph(fill_stitch_graph, shape, angle, underpath)
path = find_stitch_path(fill_stitch_graph, travel_graph, starting_point, ending_point)
result = path_to_stitches(path, travel_graph, fill_stitch_graph, running_stitch_length, running_stitch_tolerance, skip_last)
-
- # use running stitch to adjust the stitch length
- result = running_stitch(result, running_stitch_length, running_stitch_tolerance)
- return _apply_bean_stitch_and_repeats(result, repeats, bean_stitch_repeats)
+ result = _apply_bean_stitch_and_repeats(result, repeats, bean_stitch_repeats)
+ return result
def _apply_bean_stitch_and_repeats(stitches, repeats, bean_stitch_repeats):
if any(bean_stitch_repeats):
- stitches = bean_stitch(stitches, bean_stitch_repeats)
+ # add bean stitches, but ignore travel stitches
+ stitches = bean_stitch(stitches, bean_stitch_repeats, ['auto_fill_travel'])
if repeats:
for i in range(1, repeats):