aboutsummaryrefslogtreecommitdiff
path: root/lib/extensions
diff options
context:
space:
mode:
authorLex Neva <lexelby@users.noreply.github.com>2019-08-11 16:26:54 -0400
committerGitHub <noreply@github.com>2019-08-11 16:26:54 -0400
commitb05cc4a031fb4dace2eded97a3e44e86e2f79fe8 (patch)
tree3c2e1490a2b4a38e0c0b02682b76c0b50de2e383 /lib/extensions
parent077f7ea72ba38790bf030d3181c44787fef953b6 (diff)
parentdafc3b97822ac0e929655bfa73590209e3350c47 (diff)
Merge pull request #509 from inkstitch/lexelby/input-fixes
input: read STOP commands too
Diffstat (limited to 'lib/extensions')
-rw-r--r--lib/extensions/input.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/lib/extensions/input.py b/lib/extensions/input.py
index a82cdfca..957d355c 100644
--- a/lib/extensions/input.py
+++ b/lib/extensions/input.py
@@ -13,25 +13,30 @@ class Input(object):
def affect(self, args):
embroidery_file = args[0]
pattern = pyembroidery.read(embroidery_file)
- pattern = pattern.get_pattern_interpolate_trim(3)
stitch_plan = StitchPlan()
color_block = None
for raw_stitches, thread in pattern.get_as_colorblocks():
color_block = stitch_plan.new_color_block(thread)
- trim_after = False
for x, y, command in raw_stitches:
if command == pyembroidery.STITCH:
- if trim_after:
- color_block.add_stitch(trim=True)
- trim_after = False
color_block.add_stitch(x * PIXELS_PER_MM / 10.0, y * PIXELS_PER_MM / 10.0)
- if len(color_block) > 0 and command == pyembroidery.TRIM:
- trim_after = True
+ if len(color_block) > 0:
+ if command == pyembroidery.TRIM:
+ color_block.add_stitch(trim=True)
+ elif command == pyembroidery.STOP:
+ color_block.add_stitch(stop=True)
+ color_block = stitch_plan.new_color_block(thread)
stitch_plan.delete_empty_color_blocks()
+ if stitch_plan.last_color_block:
+ if stitch_plan.last_color_block.last_stitch:
+ if stitch_plan.last_color_block.last_stitch.stop:
+ # ending with a STOP command is redundant, so remove it
+ del stitch_plan.last_color_block[-1]
+
extents = stitch_plan.extents
svg = etree.Element("svg", nsmap=inkex.NSS, attrib={
"width": str(extents[0] * 2),