cclauss 2018-01-06 22:31:44 +00:00 zatwierdzone przez GitHub
commit 60bdcd2e6a
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -8,6 +8,12 @@ import colorsys
from embroider import patches_to_stitches, stitches_to_polylines, PIXELS_PER_MM
try:
xrange # Python 2
except NameError:
xrange = range # Python 3
class EmbroiderySimulator(wx.Frame):
def __init__(self, *args, **kwargs):
stitch_file = kwargs.pop('stitch_file', None)