From 2e62ba7926a19e2952148c6ced3b6ebf1a96d78a Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sat, 6 May 2023 18:31:54 +0200 Subject: Avoid duplicated points in make_spiral (#2268) * avoid duplicated points in make_spiral * circular fill: add end_row_spacing, repeats and bean repeats * fix circular fill if original shape is a circle --- lib/elements/stroke.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/elements/stroke.py') diff --git a/lib/elements/stroke.py b/lib/elements/stroke.py index ba525c2d..7ec6b76c 100644 --- a/lib/elements/stroke.py +++ b/lib/elements/stroke.py @@ -188,9 +188,10 @@ class Stroke(EmbroideryElement): @property @param('staggers', - _('Stagger lines this many times before repeating. For linear ripples only.'), + _('Stagger lines this many times before repeating'), tooltip=_('Length of the cycle by which successive stitch lines are staggered. ' - 'Fractional values are allowed and can have less visible diagonals than integer values.'), + 'Fractional values are allowed and can have less visible diagonals than integer values. ' + 'For linear ripples only.'), type='int', select_items=[('stroke_method', 'ripple_stitch')], default=1, -- cgit v1.2.3