From 491f3dd4e46bb5cc979ab410c3121e97ccc7eb84 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Fri, 2 May 2025 18:22:15 +0200 Subject: meander fill: zigzag_stitch pull compensation is now a two sided attribute (#3702) --- lib/stitches/meander_fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py index 77a899c9..0f6ddf37 100644 --- a/lib/stitches/meander_fill.py +++ b/lib/stitches/meander_fill.py @@ -180,7 +180,7 @@ def post_process(points, shape, original_shape, fill): if fill.zigzag_spacing > 0: stitches = even_running_stitch(smoothed_points, fill.zigzag_spacing / 2, fill.running_stitch_tolerance) - stitches = zigzag_stitch(stitches, fill.zigzag_spacing, fill.zigzag_width, 0) + stitches = zigzag_stitch(stitches, fill.zigzag_spacing, fill.zigzag_width, (0, 0)) else: stitches = even_running_stitch(smoothed_points, fill.running_stitch_length, fill.running_stitch_tolerance) -- cgit v1.2.3