diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2024-02-23 16:54:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-23 16:54:39 +0100 |
| commit | 0816635d7ef1b93c93824da156b17a93f19becef (patch) | |
| tree | 003ea6cd9ceb719c777bc06c6246c0f26d83cde8 /templates/jump_to_stroke.xml | |
| parent | c61473f02ff2b56a8e72db3eff46010af2784894 (diff) | |
Jump to stroke options (#2733)
* Min width
* Max width
* Connect only within groups or layers
* Do not connect after trim, stop or forced lock stitches
* Merge new strokes with previous/next stroke
Diffstat (limited to 'templates/jump_to_stroke.xml')
| -rw-r--r-- | templates/jump_to_stroke.xml | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/templates/jump_to_stroke.xml b/templates/jump_to_stroke.xml index 13ab96fa..8b375d7b 100644 --- a/templates/jump_to_stroke.xml +++ b/templates/jump_to_stroke.xml @@ -11,8 +11,37 @@ </submenu> </effects-menu> </effect> - <param name="stitch-length" type="float" gui-text="Running stitch length (mm)">2.5</param> - <param name="tolerance" type="float" gui-text="Running stitch tolerance (mm)">2.0</param> + <param name="tab" type="notebook"> + <page name="options" gui-text="Options"> + <param name="minimum-jump-length" type="float" precision="2" min="0" max="100" + gui-text="Convert jumps not shorter than (mm)">3.0</param> + <param name="maximum-jump-length" type="float" precision="2" min="0" max="10000" + gui-text="Convert jumps not longer than (mm)">0</param> + <param name="connect" type="optiongroup" appearance="combo" gui-text="Connect"> + <option value="all">all</option> + <option value="layer">in same layer</option> + <option value="group">in same group</option> + </param> + <label>Do not connect after</label> + <param name="exclude-trim" type="bool" indent="1" gui-text="Trim">true</param> + <param name="exclude-stop" type="bool" indent="1" gui-text="Stop">true</param> + <param name="exclude-force-lock-stitch" indent="1" type="bool" gui-text="Force lock stitch">true</param> + </page> + <page name="output-settings" gui-text="Output settings"> + <param name="merge" type="bool" gui-text="Merge consecutive strokes">false</param> + <spacer /> + <separator /> + <spacer /> + <label>These settings only apply when merging is disabled</label> + <param name="stitch-length" type="float" indent="1" gui-text="Running stitch length (mm)">2.5</param> + <param name="tolerance" type="float" indent="1" gui-text="Running stitch tolerance (mm)">2.0</param> + </page> + <page name="info" gui-text="Help"> + <label appearance="header">This extension converts jump stithes to running stitches.</label> + <label>Get more information on our website</label> + <label appearance="url">https://inkstitch.org/docs/stroke-tools/#jump-to-stroke</label> + </page> + </param> <script> {{ command_tag | safe }} </script> |
