summaryrefslogtreecommitdiff
path: root/lib/svg
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2022-05-24 19:40:30 +0200
committerGitHub <noreply@github.com>2022-05-24 19:40:30 +0200
commite968f814f718c32742466bfa50cb62f0ad7b2d54 (patch)
treebc02fc1bf3eb7a3f7c939d76e6323c1cdfe0976e /lib/svg
parentca07b1b267b0f401b947c984e67ee15de9e16c8f (diff)
Add ripple stitch feature (#1667)
Diffstat (limited to 'lib/svg')
-rw-r--r--lib/svg/tags.py10
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')