diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2022-05-24 19:40:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-24 19:40:30 +0200 |
| commit | e968f814f718c32742466bfa50cb62f0ad7b2d54 (patch) | |
| tree | bc02fc1bf3eb7a3f7c939d76e6323c1cdfe0976e /lib/svg | |
| parent | ca07b1b267b0f401b947c984e67ee15de9e16c8f (diff) | |
Add ripple stitch feature (#1667)
Diffstat (limited to 'lib/svg')
| -rw-r--r-- | lib/svg/tags.py | 10 |
1 files changed, 8 insertions, 2 deletions
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') |
