diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2025-11-07 17:10:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-07 17:10:03 +0100 |
| commit | 5a9ae03dc14ea5b68a99581c21a5d8085f1a3243 (patch) | |
| tree | 4b729fbdc8656f3ba75b7dfdd2ccfecdd8718fee /lib/stitches/tartan_fill.py | |
| parent | 383f164b6d90c0819d49f4fb16deb9efa3e11df2 (diff) | |
Running stitch length sequence (#4034)
* allow running stitch length sequences
* contour fill: fix error message for long stitch length
* satin: fix center underlay stitch length
Diffstat (limited to 'lib/stitches/tartan_fill.py')
| -rw-r--r-- | lib/stitches/tartan_fill.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stitches/tartan_fill.py b/lib/stitches/tartan_fill.py index c25bb435..521919a0 100644 --- a/lib/stitches/tartan_fill.py +++ b/lib/stitches/tartan_fill.py @@ -155,7 +155,7 @@ def _generate_herringbone_lines( staggered_lines = [] for i, line in enumerate(lines): linestring = LineString(line) - staggered_line = apply_stitches(linestring, fill.max_stitch_length, fill.staggers, fill.row_spacing, i) + staggered_line = apply_stitches(linestring, [fill.max_stitch_length], fill.staggers, fill.row_spacing, i) # make sure we do not ommit the very first or very last point (it would confuse our sorting algorithm) staggered_line = LineString([linestring.coords[0]] + list(staggered_line.coords) + [linestring.coords[-1]]) staggered_lines.append(staggered_line) @@ -205,7 +205,7 @@ def _generate_tartan_lines( staggered_lines = [] for i, line in enumerate(lines): linestring = LineString(line) - staggered_line = apply_stitches(linestring, fill.max_stitch_length, fill.staggers, fill.row_spacing, i) + staggered_line = apply_stitches(linestring, [fill.max_stitch_length], fill.staggers, fill.row_spacing, i) # make sure we do not ommit the very first or very last point (it would confuse our sorting algorithm) staggered_line = LineString([linestring.coords[0]] + list(staggered_line.coords) + [linestring.coords[-1]]) staggered_lines.append(staggered_line) |
