kopia lustrzana https://github.com/inkstitch/inkstitch
26 wiersze
771 B
Python
26 wiersze
771 B
Python
from embroider import Embroider
|
|
from install import Install
|
|
from params import Params
|
|
from print_pdf import Print
|
|
from simulate import Simulate
|
|
from input import Input
|
|
from output import Output
|
|
from zip import Zip
|
|
from flip import Flip
|
|
from object_commands import ObjectCommands
|
|
from layer_commands import LayerCommands
|
|
from convert_to_satin import ConvertToSatin
|
|
|
|
__all__ = extensions = [Embroider,
|
|
Install,
|
|
Params,
|
|
Print,
|
|
Simulate,
|
|
Input,
|
|
Output,
|
|
Zip,
|
|
Flip,
|
|
ObjectCommands,
|
|
LayerCommands,
|
|
ConvertToSatin]
|