diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2018-11-14 20:23:06 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-14 20:23:06 -0500 |
| commit | f5c85183d9c874fca806917e50992daea4101496 (patch) | |
| tree | a2450e2e37a7d94625a917240e78eadc939fd65b /lib/extensions/embroider.py | |
| parent | 238ad843dd658de6c7afd5b8697c0e080b1cf965 (diff) | |
basic lettering (#344)
Can handle multiple lines of text and routes the stitching in alternating directions on each line.
Diffstat (limited to 'lib/extensions/embroider.py')
| -rw-r--r-- | lib/extensions/embroider.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extensions/embroider.py b/lib/extensions/embroider.py index 7c8adfc9..1a578031 100644 --- a/lib/extensions/embroider.py +++ b/lib/extensions/embroider.py @@ -1,15 +1,15 @@ import os -from .base import InkstitchExtension from ..i18n import _ from ..output import write_embroidery_file from ..stitch_plan import patches_to_stitch_plan from ..svg import render_stitch_plan, PIXELS_PER_MM +from .base import InkstitchExtension class Embroider(InkstitchExtension): def __init__(self, *args, **kwargs): - InkstitchExtension.__init__(self) + InkstitchExtension.__init__(self, *args, **kwargs) self.OptionParser.add_option("-c", "--collapse_len_mm", action="store", type="float", dest="collapse_length_mm", default=3.0, |
