summaryrefslogtreecommitdiff
path: root/lib/stitch_plan/trim.py
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2018-05-19 14:41:50 -0400
committerGitHub <noreply@github.com>2018-05-19 14:41:50 -0400
commit9dadd836e2f09b0216f7b40c782e2b55bcc90dee (patch)
tree128b6f13ea682a8e5a033370ab2e13388801f100 /lib/stitch_plan/trim.py
parentba7288d8fcd62678bd17d8fab01d0d488d9e21e8 (diff)
parent6fe417cd64090f028c0d07b799620eb94637bf33 (diff)
Merge pull request #163 from lexelby/lexelby-single-extension
single code entry point
Diffstat (limited to 'lib/stitch_plan/trim.py')
-rw-r--r--lib/stitch_plan/trim.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/stitch_plan/trim.py b/lib/stitch_plan/trim.py
new file mode 100644
index 00000000..f692a179
--- /dev/null
+++ b/lib/stitch_plan/trim.py
@@ -0,0 +1,23 @@
+def process_trim(color_block, next_stitch):
+ """Handle the "trim after" checkbox.
+
+ DST (and maybe other formats?) has no actual TRIM instruction.
+ Instead, 3 sequential JUMPs cause the machine to trim the thread.
+
+ To support both DST and other formats, we'll add a TRIM and two
+ JUMPs. The TRIM will be converted to a JUMP by libembroidery
+ if saving to DST, resulting in the 3-jump sequence.
+ """
+
+ delta = next_stitch - color_block.last_stitch
+ delta = delta * (1/4.0)
+
+ pos = color_block.last_stitch
+
+ for i in xrange(3):
+ pos += delta
+ color_block.add_stitch(pos.x, pos.y, jump=True)
+
+ # first one should be TRIM instead of JUMP
+ color_block.stitches[-3].jump = False
+ color_block.stitches[-3].trim = True