inkstitch/lib/extensions/__init__.py

39 wiersze
1.2 KiB
Python
Czysty Zwykły widok Historia

from auto_satin import AutoSatin
from convert_to_satin import ConvertToSatin
from cut_satin import CutSatin
from embroider import Embroider
from flip import Flip
from global_commands import GlobalCommands
from input import Input
2018-06-24 19:55:13 +00:00
from install import Install
from layer_commands import LayerCommands
from lettering import Lettering
2020-02-02 19:08:00 +00:00
from lib.extensions.troubleshoot import Troubleshoot
from object_commands import ObjectCommands
from output import Output
from params import Params
2018-04-29 02:14:23 +00:00
from print_pdf import Print
2020-02-02 19:08:00 +00:00
from remove_embroidery_settings import RemoveEmbroiderySettings
from simulate import Simulate
2018-06-13 02:15:32 +00:00
from zip import Zip
2018-08-22 18:12:39 +00:00
__all__ = extensions = [Embroider,
Install,
Params,
Print,
Simulate,
Input,
Output,
Zip,
Flip,
ObjectCommands,
LayerCommands,
2018-08-24 20:29:13 +00:00
GlobalCommands,
ConvertToSatin,
CutSatin,
AutoSatin,
Lettering,
2020-02-02 19:08:00 +00:00
Troubleshoot,
RemoveEmbroiderySettings]