Dressup gui import cleanup

This commit is contained in:
Markus Lampert
2019-06-02 11:30:18 -07:00
parent b69b7a1f67
commit adceb31db3
6 changed files with 18 additions and 9 deletions

View File

@@ -22,13 +22,16 @@
# * *
# ***************************************************************************
import FreeCAD
import FreeCADGui
import Path
import math
import PathScripts.PathGeom as PathGeom
import PathScripts.PathUtils as PathUtils
from PySide import QtCore, QtGui
from PySide import QtCore
if FreeCAD.GuiUp:
import FreeCADGui
from PySide import QtGui
"""Axis remapping Dressup object and FreeCAD command. This dressup remaps one axis of motion to another.
For example, you can re-map the Y axis to A to control a 4th axis rotary."""

View File

@@ -24,7 +24,6 @@
from __future__ import print_function
import DraftGeomUtils
import FreeCAD
import FreeCADGui
import math
import Part
import Path
@@ -34,7 +33,7 @@ import PathScripts.PathLog as PathLog
import PathScripts.PathUtil as PathUtil
import PathScripts.PathUtils as PathUtils
from PySide import QtCore, QtGui
from PySide import QtCore
"""Dogbone Dressup object and FreeCAD command"""
@@ -1076,7 +1075,8 @@ class CommandDressupDogbone:
FreeCAD.ActiveDocument.recompute()
if FreeCAD.GuiUp:
# register the FreeCAD command
import FreeCADGui
from PySide import QtGui
FreeCADGui.addCommand('Path_DressupDogbone', CommandDressupDogbone())
FreeCAD.Console.PrintLog("Loading DressupDogbone... done\n")

View File

@@ -24,7 +24,6 @@
from __future__ import print_function
import FreeCAD
import FreeCADGui
import Path
from PySide import QtCore
import math
@@ -33,6 +32,9 @@ import PathScripts.PathUtils as PathUtils
"""Dragknife Dressup object and FreeCAD command"""
if FreeCAD.GuiUp:
import FreeCADGui
from PySide import QtGui
# Qt translation handling
def translate(context, text, disambig=None):

View File

@@ -25,7 +25,6 @@
from __future__ import print_function
import FreeCAD
import FreeCADGui
import Path
import PathScripts.PathDressup as PathDressup
import PathScripts.PathGeom as PathGeom
@@ -37,6 +36,9 @@ from PySide import QtCore
"""LeadInOut Dressup MASHIN-CRC USE ROLL-ON ROLL-OFF to profile"""
if FreeCAD.GuiUp:
import FreeCADGui
from PySide import QtGui
# Qt translation handling
def translate(text, context="Path_DressupLeadInOut", disambig=None):

View File

@@ -22,7 +22,6 @@
# * *
# ***************************************************************************
import FreeCAD
import FreeCADGui
import Path
import Part
import PathScripts.PathDressup as PathDressup
@@ -33,6 +32,10 @@ import math
from PathScripts import PathUtils
from PySide import QtCore
if FreeCAD.GuiUp:
import FreeCADGui
from PySide import QtGui
# Qt translation handling
def translate(text, context="Path_DressupRampEntry", disambig=None):

View File

@@ -31,7 +31,6 @@ import math
import unittest
from FreeCAD import Vector
#from PathScripts.PathDressupHoldingTags import *
from PathTests.PathTestUtils import PathTestBase
class TestPathGeom(PathTestBase):