From 433b2c401c33baf8a32d5c790d24bd49086fdd05 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Wed, 19 Aug 2020 22:05:34 -0400 Subject: remove obselete simulate extension --- lib/extensions/simulate.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 lib/extensions/simulate.py (limited to 'lib/extensions') diff --git a/lib/extensions/simulate.py b/lib/extensions/simulate.py deleted file mode 100644 index a4da26d5..00000000 --- a/lib/extensions/simulate.py +++ /dev/null @@ -1,19 +0,0 @@ -from ..gui import show_simulator -from ..stitch_plan import patches_to_stitch_plan -from .base import InkstitchExtension - - -class Simulate(InkstitchExtension): - def __init__(self): - InkstitchExtension.__init__(self) - self.OptionParser.add_option("-P", "--path", - action="store", type="string", - dest="path", default=".", - help="Directory in which to store output file") - - def effect(self): - if not self.get_elements(): - return - patches = self.elements_to_patches(self.elements) - stitch_plan = patches_to_stitch_plan(patches) - show_simulator(stitch_plan) -- cgit v1.2.3