#*************************************************************************** #* * #* Copyright (c) 2015 - Victor Titov (DeepSOIC) * #* * #* * #* This program is free software; you can redistribute it and/or modify * #* it under the terms of the GNU Lesser General Public License (LGPL) * #* as published by the Free Software Foundation; either version 2 of * #* the License, or (at your option) any later version. * #* for detail see the LICENCE text file. * #* * #* This program is distributed in the hope that it will be useful, * #* but WITHOUT ANY WARRANTY; without even the implied warranty of * #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * #* GNU Library General Public License for more details. * #* * #* You should have received a copy of the GNU Library General Public * #* License along with this program; if not, write to the Free Software * #* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * #* USA * #* * #*************************************************************************** __title__="Lattice Invert object: creates an array of placements from a compound." __author__ = "DeepSOIC" __url__ = "" import math import FreeCAD as App import Part from lattice2Common import * import lattice2BaseFeature import lattice2CompoundExplorer as LCE import lattice2GeomUtils as Utils import lattice2Executer # -------------------------- document object -------------------------------------------------- def makeLatticeInvert(name): '''makeLatticeInvert(name): makes a LatticeInvert object.''' return lattice2BaseFeature.makeLatticeFeature(name, LatticeInvert, ViewProviderInvert) class LatticeInvert(lattice2BaseFeature.LatticeFeature): "The Lattice Invert object" def derivedInit(self,obj): obj.addProperty("App::PropertyLink","Base","Lattice Invert","Lattice, all the placements of which are to be inverted.") obj.addProperty("App::PropertyEnumeration","TranslateMode","Lattice Invert","What to do with translation part of placements") obj.TranslateMode = ['invert', 'keep', 'reset'] obj.TranslateMode = 'invert' obj.addProperty("App::PropertyEnumeration","OrientMode","Lattice Invert","what to do with orientation part of placements") obj.OrientMode = ['invert', 'keep', 'reset'] obj.OrientMode = 'invert' self.assureProperties(obj) def assureProperties(self, selfobj): self.assureProperty(selfobj, 'App::PropertyEnumeration', 'Referencing', ['Origin', 'Array\'s reference'], "Lattice Invert", "Sets which placement to use as origin") def derivedExecute(self,obj): self.assureProperties(obj) # cache stuff placements = lattice2BaseFeature.getPlacementsList(obj.Base) # dereference refplm = App.Placement() if obj.Referencing == 'Origin': pass elif obj.Referencing == 'Array\'s reference': refplm = self.getReferencePlm(obj.Base) self.setReferencePlm(obj, refplm) else: raise NotImplementedError(obj.Referencing) inv_refplm = refplm.inverse() locplms = [inv_refplm.multiply(plm) for plm in placements] #cache mode comparisons, for speed posIsInvert = obj.TranslateMode == 'invert' posIsKeep = obj.TranslateMode == 'keep' posIsReset = obj.TranslateMode == 'reset' oriIsInvert = obj.OrientMode == 'invert' oriIsKeep = obj.OrientMode == 'keep' oriIsReset = obj.OrientMode == 'reset' # initialize output containers and loop variables outputPlms = [] #list of placements # the essence for plm in locplms: pos = App.Vector() ori = App.Rotation() inverted = plm.inverse() if posIsInvert: pos = inverted.Base elif posIsKeep: pos = plm.Base elif posIsReset: pass if oriIsInvert: ori = inverted.Rotation elif oriIsKeep: ori = plm.Rotation elif oriIsReset: pass outputPlms.append(App.Placement(pos, ori)) # re-reference outputPlms = [refplm.multiply(plm) for plm in outputPlms] return outputPlms class ViewProviderInvert(lattice2BaseFeature.ViewProviderLatticeFeature): def getIcon(self): return getIconPath('Lattice2_Invert.svg') def claimChildren(self): return [screen(self.Object.Base)] # -------------------------- /document object -------------------------------------------------- # -------------------------- Gui command -------------------------------------------------- def CreateLatticeInvert(name): sel = FreeCADGui.Selection.getSelectionEx() FreeCAD.ActiveDocument.openTransaction("Create LatticeInvert") FreeCADGui.addModule("lattice2Invert") FreeCADGui.addModule("lattice2Executer") FreeCADGui.doCommand("f = lattice2Invert.makeLatticeInvert(name='"+name+"')") FreeCADGui.doCommand("f.Base = App.ActiveDocument."+sel[0].ObjectName) hasref = lattice2BaseFeature.getReferencePlm(sel[0].Object) is not None FreeCADGui.doCommand("f.Referencing = {r}".format(r= repr('Array\'s reference' if hasref else 'Origin') )) FreeCADGui.doCommand("for child in f.ViewObject.Proxy.claimChildren():\n"+ " child.ViewObject.hide()") FreeCADGui.doCommand("lattice2Executer.executeFeature(f)") FreeCADGui.doCommand("f = None") FreeCAD.ActiveDocument.commitTransaction() class _CommandLatticeInvert: "Command to create LatticeInvert feature" def GetResources(self): return {'Pixmap' : getIconPath("Lattice2_Invert.svg"), 'MenuText': QtCore.QT_TRANSLATE_NOOP("Lattice2_Invert","Invert lattice"), 'Accel': "", 'ToolTip': QtCore.QT_TRANSLATE_NOOP("Lattice2_Invert","Lattice Invert: invert all placements in a lattice object.")} def Activated(self): if len(FreeCADGui.Selection.getSelection()) == 1 : CreateLatticeInvert(name = "Invert") else: mb = QtGui.QMessageBox() mb.setIcon(mb.Icon.Warning) mb.setText(translate("Lattice2_Invert", "Please select one object, first. The object must be a lattice object (array of placements).", None)) mb.setWindowTitle(translate("Lattice2_Invert","Bad selection", None)) mb.exec_() def IsActive(self): if FreeCAD.ActiveDocument: return True else: return False if FreeCAD.GuiUp: FreeCADGui.addCommand('Lattice2_Invert', _CommandLatticeInvert()) exportedCommands = ['Lattice2_Invert'] # -------------------------- /Gui command --------------------------------------------------