|
@@ -45,6 +45,7 @@ import tclCommands.TclCommandNewGerber
|
|
|
import tclCommands.TclCommandOffset
|
|
import tclCommands.TclCommandOffset
|
|
|
import tclCommands.TclCommandOpenDXF
|
|
import tclCommands.TclCommandOpenDXF
|
|
|
import tclCommands.TclCommandOpenExcellon
|
|
import tclCommands.TclCommandOpenExcellon
|
|
|
|
|
+import tclCommands.TclCommandOpenFolder
|
|
|
import tclCommands.TclCommandOpenGCode
|
|
import tclCommands.TclCommandOpenGCode
|
|
|
import tclCommands.TclCommandOpenGerber
|
|
import tclCommands.TclCommandOpenGerber
|
|
|
import tclCommands.TclCommandOpenProject
|
|
import tclCommands.TclCommandOpenProject
|
|
@@ -63,6 +64,7 @@ import tclCommands.TclCommandSetOrigin
|
|
|
import tclCommands.TclCommandSetPath
|
|
import tclCommands.TclCommandSetPath
|
|
|
import tclCommands.TclCommandSetSys
|
|
import tclCommands.TclCommandSetSys
|
|
|
import tclCommands.TclCommandSkew
|
|
import tclCommands.TclCommandSkew
|
|
|
|
|
+import tclCommands.TclCommandSplitGeometry
|
|
|
import tclCommands.TclCommandSubtractPoly
|
|
import tclCommands.TclCommandSubtractPoly
|
|
|
import tclCommands.TclCommandSubtractRectangle
|
|
import tclCommands.TclCommandSubtractRectangle
|
|
|
import tclCommands.TclCommandVersion
|
|
import tclCommands.TclCommandVersion
|
|
@@ -93,7 +95,8 @@ def register_all_commands(app, commands):
|
|
|
:return: None
|
|
:return: None
|
|
|
"""
|
|
"""
|
|
|
|
|
|
|
|
- tcl_modules = {k: v for k, v in list(sys.modules.items()) if k.startswith('tclCommands.TclCommand')}
|
|
|
|
|
|
|
+ tcl_modules = {k: v for k, v in list(
|
|
|
|
|
+ sys.modules.items()) if k.startswith('tclCommands.TclCommand')}
|
|
|
|
|
|
|
|
for key, mod in list(tcl_modules.items()):
|
|
for key, mod in list(tcl_modules.items()):
|
|
|
if key != 'tclCommands.TclCommand':
|
|
if key != 'tclCommands.TclCommand':
|