summaryrefslogtreecommitdiff
path: root/lib/elements/fill_stitch.py
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2022-05-03 16:58:55 -0400
committerKaalleen <reni@allenka.de>2022-05-04 19:18:33 +0200
commitaeeaf72338e2d7645309725be641d552a3c56190 (patch)
tree2d28e60d4c3f6f80ad98df506c92358074124448 /lib/elements/fill_stitch.py
parent5a69fa3e9c582a3bc21660342cea35837ae1eb9a (diff)
wip
Diffstat (limited to 'lib/elements/fill_stitch.py')
-rw-r--r--lib/elements/fill_stitch.py14
1 files changed, 6 insertions, 8 deletions
diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py
index 70d4f356..5e795f45 100644
--- a/lib/elements/fill_stitch.py
+++ b/lib/elements/fill_stitch.py
@@ -576,19 +576,17 @@ class FillStitch(EmbroideryElement):
if not starting_point:
starting_point = (0, 0)
for poly in polygons:
- connectedLine, _ = tangential_fill_stitch_line_creator.offset_poly(
+ connected_line = tangential_fill_stitch_line_creator.tangential_fill(
poly,
- -self.row_spacing,
- self.join_style + 1,
- self.max_stitch_length,
- min(self.min_stitch_length, self.max_stitch_length),
- self.interlaced,
self.tangential_strategy,
+ self.row_spacing,
+ self.max_stitch_length,
+ self.join_style + 1,
+ self.clockwise,
shgeo.Point(starting_point),
self.avoid_self_crossing,
- self.clockwise
)
- path = [InkstitchPoint(*p) for p in connectedLine]
+ path = [InkstitchPoint(*p) for p in connected_line]
stitch_group = StitchGroup(
color=self.color,
tags=("auto_fill", "auto_fill_top"),