From 3121bbaedf7e76d92a029fad067828014f9f5fde Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Mon, 11 Mar 2024 13:55:00 +0100 Subject: [PATCH] add satins only option to force lock stitch extension (#2773) --- lib/extensions/lettering_force_lock_stitches.py | 7 +++++-- templates/lettering_force_lock_stitches.xml | 8 ++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/lib/extensions/lettering_force_lock_stitches.py b/lib/extensions/lettering_force_lock_stitches.py index 62d7ae145..17033ce98 100644 --- a/lib/extensions/lettering_force_lock_stitches.py +++ b/lib/extensions/lettering_force_lock_stitches.py @@ -20,6 +20,7 @@ class LetteringForceLockStitches(InkstitchExtension): def __init__(self, *args, **kwargs): InkstitchExtension.__init__(self, *args, **kwargs) + self.arg_parser.add_argument("-s", "--satin_only", type=inkex.Boolean, dest="satin_only") self.arg_parser.add_argument("-a", "--max_distance", type=float, default=3, dest="max_distance") self.arg_parser.add_argument("-i", "--min_distance", type=float, default=1, dest="min_distance") self.arg_parser.add_argument("-l", "--last_element", type=inkex.Boolean, dest="last_element") @@ -65,7 +66,7 @@ class LetteringForceLockStitches(InkstitchExtension): # set force lock stitches attribute if needed for last_element in last_elements: last_element.attrib.pop('lastglyphelement') - if self.options.last_element: + if self.options.last_element and not (self.options.satin_only and not last_element.get('inkstitch:satin_column', False)): last_element.set(INKSTITCH_ATTRIBS['force_lock_stitches'], True) # hide glyph layers again @@ -74,7 +75,9 @@ class LetteringForceLockStitches(InkstitchExtension): def _set_force_attribute(self, first_stitch, last_stitch, previous_element): distance_mm = first_stitch.distance(last_stitch) / PIXELS_PER_MM - if distance_mm < self.options.max_distance and distance_mm > self.options.min_distance: + if (distance_mm < self.options.max_distance and + distance_mm > self.options.min_distance and + not (self.options.satin_only and not previous_element.get_boolean_param('satin_column', False))): previous_element.node.set(INKSTITCH_ATTRIBS['force_lock_stitches'], True) def _update_layer_visibility(self, display): diff --git a/templates/lettering_force_lock_stitches.xml b/templates/lettering_force_lock_stitches.xml index 7c3a3f331..a0273d995 100644 --- a/templates/lettering_force_lock_stitches.xml +++ b/templates/lettering_force_lock_stitches.xml @@ -20,8 +20,12 @@ - 1 - 3 + + + + false + 1 + 3 false