summaryrefslogtreecommitdiff
path: root/lib/stitches
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-09-04 04:20:54 +0200
committerGitHub <noreply@github.com>2025-09-04 04:20:54 +0200
commite2e14bb0a4e2d403965f644429e930684b718169 (patch)
tree5372b19b80591b17d981d07953f644df183ee911 /lib/stitches
parent91f90b163823dfd02074600f8405f4a695ac28a3 (diff)
fix meander clamp (2) (#3945)
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)