From d458ea563b1adc39000e4c362ca3d2b28f2deefa Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Thu, 27 Apr 2023 20:00:59 +0200 Subject: Ripple stitch: add density and stagger option (#2206) --- lib/svg/tags.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index ba8bf558..f114d159 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -109,6 +109,7 @@ inkstitch_attribs = [ 'cutwork_needle', # ripples 'line_count', + 'min_line_dist_mm', 'exponent', 'flip_exponent', 'skip_start', @@ -117,7 +118,7 @@ inkstitch_attribs = [ 'scale_start', 'scale_end', 'rotate_ripples', - 'grid_size', + 'grid_size_mm', # satin column 'satin_column', 'satin_method', @@ -157,6 +158,8 @@ inkstitch_attribs = [ 'stop_after', 'random_seed', 'manual_stitch', + # legacy + 'grid_size' ] for attrib in inkstitch_attribs: INKSTITCH_ATTRIBS[attrib] = inkex.addNS(attrib, 'inkstitch') -- cgit v1.2.3