summaryrefslogtreecommitdiff
path: root/lib/stitches
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stitches')
-rw-r--r--lib/stitches/meander_fill.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py
index 0f6ddf37..87c52e17 100644
--- a/lib/stitches/meander_fill.py
+++ b/lib/stitches/meander_fill.py
@@ -185,7 +185,9 @@ def post_process(points, shape, original_shape, fill):
stitches = even_running_stitch(smoothed_points, fill.running_stitch_length, fill.running_stitch_tolerance)
if fill.clip:
- stitches = clamp_path_to_polygon(stitches, original_shape)
+ # the stitch path may have self intersections
+ # therefore we don't want clamp polygon to check for the distance to the start point of a segment
+ stitches = clamp_path_to_polygon(stitches, original_shape, False)
if fill.bean_stitch_repeats:
stitches = bean_stitch(stitches, fill.bean_stitch_repeats)