diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-05-02 18:22:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-02 18:22:15 +0200 |
| commit | 491f3dd4e46bb5cc979ab410c3121e97ccc7eb84 (patch) | |
| tree | 126deb0f36bbeff867966e1175fdd62d85a857ba | |
| parent | 200df2f3b5e2612e896fac6ad0c5ac27abf2e484 (diff) | |
meander fill: zigzag_stitch pull compensation is now a two sided attribute (#3702)
| -rw-r--r-- | lib/stitches/meander_fill.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
