From e968f814f718c32742466bfa50cb62f0ad7b2d54 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Tue, 24 May 2022 19:40:30 +0200 Subject: Add ripple stitch feature (#1667) --- lib/svg/tags.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'lib/svg') diff --git a/lib/svg/tags.py b/lib/svg/tags.py index d78ba678..ce57de4f 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -63,6 +63,11 @@ inkstitch_attribs = [ 'join_style', 'avoid_self_crossing', 'clockwise', + 'line_count', + 'skip_start', + 'skip_end', + 'render_grid', + 'exponent', 'expand_mm', 'fill_underlay', 'fill_underlay_angle', @@ -80,7 +85,7 @@ inkstitch_attribs = [ 'flip', 'expand_mm', # stroke - 'manual_stitch', + 'stroke_method', 'bean_stitch_repeats', 'repeats', 'running_stitch_length_mm', @@ -102,7 +107,8 @@ inkstitch_attribs = [ 'stroke_first', # Legacy 'trim_after', - 'stop_after' + 'stop_after', + 'manual_stitch', ] for attrib in inkstitch_attribs: INKSTITCH_ATTRIBS[attrib] = inkex.addNS(attrib, 'inkstitch') -- cgit v1.2.3