diff --git a/EM_FHEquiv.py b/EM_FHEquiv.py index 3b11b2e..876d6ef 100644 --- a/EM_FHEquiv.py +++ b/EM_FHEquiv.py @@ -115,7 +115,7 @@ class _FHEquiv: def assignShape(self, obj): ''' Compute and assign the shape to the object 'obj' ''' n1 = obj.Node1.Proxy.getAbsCoord() - n2 = obj.Node1.Proxy.getAbsCoord() + n2 = obj.Node2.Proxy.getAbsCoord() shape = self.makeEquivShape(n1,n2) # shape may be None, e.g. if endpoints coincide. Do not assign in this case. # FHEquiv is still valid, but not visible. @@ -197,7 +197,7 @@ class _ViewProviderFHEquiv: ''' Return the icon which will appear in the tree view. This method is optional and if not defined a default icon is shown. ''' - return os.path.join(iconPath, 'equiv_icon.svg') + return os.path.join(iconPath, 'EM_FHEquiv.svg') def __getstate__(self): return None @@ -209,7 +209,7 @@ class _CommandFHEquiv: ''' The EM FastHenry equivalent node (FHEquiv) command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'equiv_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHEquiv.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHEquiv","FHEquiv"), 'Accel': "E, E", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHEquiv","Creates a FastHenry equivalent node object from two FHNodes")} diff --git a/EM_FHInputFile.py b/EM_FHInputFile.py index da9a4af..4282fe5 100644 --- a/EM_FHInputFile.py +++ b/EM_FHInputFile.py @@ -49,7 +49,7 @@ else: __dir__ = os.path.dirname(__file__) iconPath = os.path.join( __dir__, 'Resources' ) -def makeFHInputFile(doc=None,filename=None,folder=None): +def createFHInputFile(doc=None,filename=None,folder=None): '''Outputs a FastHenry input file based on the active document geometry 'doc' is the Document object that must contain at least one @@ -57,7 +57,7 @@ def makeFHInputFile(doc=None,filename=None,folder=None): If no 'doc' is given, the active document is used, if any. 'filename' is the filename to use. If not passed as an argument, the 'Filename' property of the FHSolver object contained in the document - will be used. If the 'Filename" string in the FHSolver object is empty, + will be used. If the "Filename" string in the FHSolver object is empty, the function builds a filename concatenating the document name with the default extension EMFHSOLVER_DEF_FILENAME. Whatever the name, if a file with the same name exists in the target @@ -65,12 +65,12 @@ def makeFHInputFile(doc=None,filename=None,folder=None): 'folder' is the folder where the file will be stored. If not passed as an argument, the 'Folder' property of the FHSolver object contained in the document will be used. If the 'Folder' string - in the FHSolver object is empty, the vunction defaults to the + in the FHSolver object is empty, the function defaults to the user's home path (e.g. in Windows "C:\Documents and Settings\ username\My Documents", in Linux "/home/username") Example: - makeFHInputFile() + createFHInputFile() ''' if not doc: doc = App.ActiveDocument @@ -170,7 +170,7 @@ class _CommandFHInputFile: ''' The EM FastHenry create input file command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'inputfile_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHInputFile.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHInputFile","FHInputFile"), 'Accel': "E, I", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHInputFile","Creates a FastHenry input file")} @@ -184,7 +184,7 @@ class _CommandFHInputFile: #self.Width = p.GetFloat("Width",200) FreeCAD.ActiveDocument.openTransaction(translate("EM","Create a FastHenry file")) FreeCADGui.addModule("EM") - FreeCADGui.doCommand('obj=EM.makeFHInputFile(App.ActiveDocument)') + FreeCADGui.doCommand('obj=EM.createFHInputFile(App.ActiveDocument)') FreeCAD.ActiveDocument.commitTransaction() FreeCAD.ActiveDocument.recompute() diff --git a/EM_FHNode.py b/EM_FHNode.py index 1bc3a3a..e9719c5 100644 --- a/EM_FHNode.py +++ b/EM_FHNode.py @@ -120,9 +120,35 @@ class _FHNode: #FreeCAD.Console.PrintWarning("_FHNode execute\n") #debug # set the shape as a Vertex at relative position obj.X, obj.Y, obj.Z # The vertex will then be adjusted according to the FHNode Placement - obj.Shape = Part.Vertex(self.getRelCoord()) + ver = FreeCAD.Version() + # need to work-around a pesky bug in FreeCAD 0.17(.13541 at the time of writing) + # that impacts the save/reload when there is a shape with a single Vertex. + # In this case, the .brep file inside the .FCStd file does NOT contain any + # placement information. So the object Placement is restored from the + # Document.xml but then it is overwritten by the Shape placement that + # is then zero. This bug is not affecting FreeCAD version 0.18(.15593 at the time of writing). + # As the shape is anyway recreated at recompute() time, the following w/a is valid + # also between 0.17 and 0.18. + if (int(ver[0])>0) or (int(ver[0])==0 and int(ver[1])>17): + shape = Part.Vertex(self.getRelCoord()) + else: + shape1 = Part.Vertex(self.getRelCoord()) + shape = Part.makeCompound([shape1]) + obj.Shape = shape #FreeCAD.Console.PrintWarning("_FHNode execute ends\n") #debug +# debug +# +# def onBeforeChange(self, obj, prop): +# ''' take action before the 'obj' object 'prop' will change +# ''' +# # save current list of nodes and holes, before the change, +# # to be able to see which nodes/holes have been added or removed +# if prop == "Placement": # debug +# FreeCAD.Console.PrintWarning("_FHNode onBeforeChange Placememnt: " + str(obj.Placement)+")\n") #debug +# +# debug + def onChanged(self, obj, prop): ''' take action if an object property 'prop' changed ''' @@ -131,7 +157,9 @@ class _FHNode: # on restore, self.Object is not there anymore (JSON does not serialize complex objects # members of the class, so __getstate__() and __setstate__() skip them); # so we must "re-attach" (re-create) the 'self.Object' - self.Object = obj + self.Object = obj + #if prop == "Placement": # debug + #FreeCAD.Console.PrintWarning("_FHNode Placememnt: " + str(obj.Placement)+")\n") #debug #FreeCAD.Console.PrintWarning("_FHNode onChanged(" + str(prop)+") ends\n") #debug def serialize(self,fid,extension=""): @@ -244,7 +272,7 @@ class _ViewProviderFHNode: ''' Return the icon which will appear in the tree view. This method is optional and if not defined a default icon is shown. ''' - return os.path.join(iconPath, 'node_icon.svg') + return os.path.join(iconPath, 'EM_FHNode.svg') def __getstate__(self): return None @@ -256,7 +284,7 @@ class _CommandFHNode: ''' The EM FastHenry Node (FHNode) command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'node_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHNode.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHNode","FHNode"), 'Accel': "E, N", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHNode","Creates a FastHenry Node object from scratch or from a selected object (point)")} @@ -276,7 +304,8 @@ class _CommandFHNode: FreeCAD.ActiveDocument.openTransaction(translate("EM","Create FHNode")) FreeCADGui.addModule("EM") for selobj in sel: - FreeCADGui.doCommand('obj=EM.makeFHNode(FreeCAD.ActiveDocument.'+selobj.Object.Name+')') + if Draft.getType(selobj) == "Point": + FreeCADGui.doCommand('obj=EM.makeFHNode(FreeCAD.ActiveDocument.'+selobj.Object.Name+')') # autogrouping, for later on #FreeCADGui.addModule("Draft") #FreeCADGui.doCommand("Draft.autogroup(obj)") diff --git a/EM_FHPath.py b/EM_FHPath.py index c5a1110..a1c79d8 100644 --- a/EM_FHPath.py +++ b/EM_FHPath.py @@ -424,7 +424,7 @@ class _ViewProviderFHPath: ''' Return the icon which will appear in the tree view. This method is optional and if not defined a default icon is shown. ''' - return os.path.join(iconPath, 'path_icon.svg') + return os.path.join(iconPath, 'EM_FHPath.svg') def __getstate__(self): return None @@ -436,7 +436,7 @@ class _CommandFHPath: ''' The EM FastHenry Path (FHPath) command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'path_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHPath.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHPath","FHPath"), 'Accel': "E, T", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHPath","Creates a Path object (set of connected FastHenry segments) from a selected base object (sketch, wire or any shape containing edges)")} diff --git a/EM_FHPlane.py b/EM_FHPlane.py index 8997ce6..6f49f47 100644 --- a/EM_FHPlane.py +++ b/EM_FHPlane.py @@ -71,7 +71,7 @@ def makeFHPlane(baseobj=None,thickness=None,seg1=None,seg2=None,nodes=[],holes=[ This can be a Part::Box or a Draft::Rectangle. If no 'baseobj' is given, the user must assign a base object later on, to be able to use this object. - 'thickness' is a float defining the plane thickness. If not defines, + 'thickness' is a float defining the plane thickness. If not defined, it defaults to EMFHPLANE_DEF_THICKNESS 'seg1' is an integer defining the number of segments along the x dimension of the plane @@ -597,7 +597,7 @@ class _ViewProviderFHPlane: ''' Return the icon which will appear in the tree view. This method is optional and if not defined a default icon is shown. ''' - return os.path.join(iconPath, 'plane_icon.svg') + return os.path.join(iconPath, 'EM_FHPlane.svg') def __getstate__(self): return None @@ -609,7 +609,7 @@ class _CommandFHPlane: ''' The EM FastHenry uniform Plane (FHPlane) command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'plane_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHPlane.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHPlane","FHPlane"), 'Accel': "E, P", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHPlane","Creates a FastHenry uniform Plane object from a selected base object (Part::Box or Draft::Rectangle)")} @@ -666,7 +666,7 @@ class _CommandFHPlaneAddRemoveNodeHole: ''' The EM FastHenry uniform Plane (FHPlane) add, or remove, Node, or Hole, command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'plane_addremovenodehole_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHPlaneAddRemoveNodeHole.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHPlaneAddRemoveNodeHole","FHPlaneAddRemoveNodeHole"), 'Accel': "E, A", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHPlaneAddRemoveNodeHole","Add/remove FHNodes or FHPlaneHoles to/from a FastHenry uniform Plane object")} diff --git a/EM_FHPlaneHole.py b/EM_FHPlaneHole.py index f7bca71..cbd4759 100644 --- a/EM_FHPlaneHole.py +++ b/EM_FHPlaneHole.py @@ -145,7 +145,20 @@ class _FHPlaneHole: if obj.Type == "Point": # set the shape as a Vertex at relative position obj.X, obj.Y, obj.Z # The shape will then be adjusted according to the object Placement - shape = Part.Vertex(self.getRelCoord()) + ver = FreeCAD.Version() + # need to work-around a pesky bug in FreeCAD 0.17(.13541 at the time of writing) + # that impacts the save/reload when there is a shape with a single Vertex. + # In this case, the .brep file inside the .FCStd file does NOT contain any + # placement information. So the object Placement is restored from the + # Document.xml but then it is overwritten by the Shape placement that + # is then zero. This bug is not affecting FreeCAD version 0.18(.15593 at the time of writing). + # As the shape is anyway recreated at recompute() time, the following w/a is valid + # also between 0.17 and 0.18. + if (int(ver[0])>0) or (int(ver[0])==0 and int(ver[1])>17): + shape = Part.Vertex(self.getRelCoord()) + else: + shape1 = Part.Vertex(self.getRelCoord()) + shape = Part.makeCompound([shape1]) elif obj.Type == "Rect": if obj.Length <= 0 or obj.Width <= 0: FreeCAD.Console.PrintWarning(translate("EM","Cannot create a FHPlaneHole rectangular hole with zero length or width")) @@ -293,7 +306,7 @@ class _ViewProviderFHPlaneHole: ''' Return the icon which will appear in the tree view. This method is optional and if not defined a default icon is shown. ''' - return os.path.join(iconPath, 'planehole_icon.svg') + return os.path.join(iconPath, 'EM_FHPlaneHole.svg') def __getstate__(self): return None @@ -305,7 +318,7 @@ class _CommandFHPlaneHole: ''' The EM FastHenry conductive plane hole (FHPlaneHole) command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'planehole_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHPlaneHole.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHPlaneHole","FHPlaneHole"), 'Accel': "E, H", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHPlaneHole","Creates a FastHenry conductive plane Hole object from scratch or from a selected object (point)")} @@ -325,7 +338,8 @@ class _CommandFHPlaneHole: FreeCAD.ActiveDocument.openTransaction(translate("EM","Create FHPlaneHole")) FreeCADGui.addModule("EM") for selobj in sel: - FreeCADGui.doCommand('obj=EM.makeFHPlaneHole(FreeCAD.ActiveDocument.'+selobj.Object.Name+')') + if Draft.getType(selobj) == "Point": + FreeCADGui.doCommand('obj=EM.makeFHPlaneHole(FreeCAD.ActiveDocument.'+selobj.Object.Name+')') # autogrouping, for later on #FreeCADGui.addModule("Draft") #FreeCADGui.doCommand("Draft.autogroup(obj)") diff --git a/EM_FHPort.py b/EM_FHPort.py index 6b4eac3..a97261a 100644 --- a/EM_FHPort.py +++ b/EM_FHPort.py @@ -23,8 +23,6 @@ #* USA * #* * #*************************************************************************** - - __title__="FreeCAD E.M. Workbench FastHenry Port Class" __author__ = "FastFieldSolvers S.R.L." @@ -54,11 +52,11 @@ else: __dir__ = os.path.dirname(__file__) iconPath = os.path.join( __dir__, 'Resources' ) -def makeFHPort(nodeStart=None,nodeEnd=None,name='FHPort'): +def makeFHPort(nodePos=None,nodeNeg=None,name='FHPort'): ''' Creates a FastHenry port ('.external' statement in FastHenry) - 'nodeStart' is the positive node FHNode object - 'nodeEnd' is the negative node FHNode object + 'nodePos' is the positive node FHNode object + 'nodeNeg' is the negative node FHNode object 'name' is the name of the object Example: @@ -73,14 +71,14 @@ def makeFHPort(nodeStart=None,nodeEnd=None,name='FHPort'): if FreeCAD.GuiUp: _ViewProviderFHPort(obj.ViewObject) # set base ViewObject properties to user-selected values (if any) - # check if 'nodeStart' is a FHNode, and if so, assign it as port start (positive) node - if nodeStart: - if Draft.getType(nodeStart) == "FHNode": - obj.NodeStart = nodeStart - # check if 'nodeEnd' is a FHNode, and if so, assign it as port end (negative) node - if nodeEnd: - if Draft.getType(nodeEnd) == "FHNode": - obj.NodeEnd = nodeEnd + # check if 'nodePos' is a FHNode, and if so, assign it as port start (positive) node + if nodePos: + if Draft.getType(nodePos) == "FHNode": + obj.NodePos = nodePos + # check if 'nodeNeg' is a FHNode, and if so, assign it as port end (negative) node + if nodeNeg: + if Draft.getType(nodeNeg) == "FHNode": + obj.NodeNeg = nodeNeg # return the newly created Python object return obj @@ -88,8 +86,8 @@ class _FHPort: '''The EM FastHenry Port object''' def __init__(self, obj): ''' Add properties ''' - obj.addProperty("App::PropertyLink","NodeStart","EM",QT_TRANSLATE_NOOP("App::Property","Starting FHNode")) - obj.addProperty("App::PropertyLink","NodeEnd","EM",QT_TRANSLATE_NOOP("App::Property","Ending FHNode")) + obj.addProperty("App::PropertyLink","NodePos","EM",QT_TRANSLATE_NOOP("App::Property","Positive FHNode")) + obj.addProperty("App::PropertyLink","NodeNeg","EM",QT_TRANSLATE_NOOP("App::Property","Negative FHNode")) obj.Proxy = self self.Type = "FHPort" # save the object in the class, to store or retrieve specific data from it @@ -99,26 +97,26 @@ class _FHPort: def execute(self, obj): ''' this method is mandatory. It is called on Document.recompute() ''' - if obj.NodeStart == None: + if obj.NodePos == None: return - elif Draft.getType(obj.NodeStart) <> "FHNode": - FreeCAD.Console.PrintWarning(translate("EM","NodeStart is not a FHNode")) + elif Draft.getType(obj.NodePos) <> "FHNode": + FreeCAD.Console.PrintWarning(translate("EM","NodePos is not a FHNode")) return - if obj.NodeEnd == None: + if obj.NodeNeg == None: return - elif Draft.getType(obj.NodeEnd) <> "FHNode": - FreeCAD.Console.PrintWarning(translate("EM","NodeEnd is not a FHNode")) + elif Draft.getType(obj.NodeNeg) <> "FHNode": + FreeCAD.Console.PrintWarning(translate("EM","NodeNeg is not a FHNode")) return - if obj.NodeStart == obj.NodeEnd: - FreeCAD.Console.PrintWarning(translate("EM","NodeStart and NodeEnd coincide. Cannot create a port.")) + if obj.NodePos == obj.NodeNeg: + FreeCAD.Console.PrintWarning(translate("EM","NodePos and NodeNeg coincide. Cannot create a port.")) return # and finally, if everything is ok, make and assign the shape self.assignShape(obj) def assignShape(self, obj): ''' Compute and assign the shape to the object 'obj' ''' - n1 = obj.NodeStart.Proxy.getAbsCoord() - n2 = obj.NodeEnd.Proxy.getAbsCoord() + n1 = obj.NodePos.Proxy.getAbsCoord() + n2 = obj.NodeNeg.Proxy.getAbsCoord() shape = self.makePortShape(n1,n2) # shape may be None, e.g. if endpoints coincide. Do not assign in this case. # Port is still valid, but not visible. @@ -161,7 +159,7 @@ class _FHPort: def serialize(self,fid): ''' Serialize the object to the 'fid' file descriptor ''' - fid.write(".external N" + self.Object.NodeStart.Label + " N" + self.Object.NodeEnd.Label + "\n") + fid.write(".external N" + self.Object.NodePos.Label + " N" + self.Object.NodeNeg.Label + "\n") def __getstate__(self): return self.Type @@ -201,17 +199,17 @@ class _ViewProviderFHPort: ''' Used to place other objects as childrens in the tree''' c = [] if hasattr(self,"Object"): - if hasattr(self.Object,"NodeStart"): - c.append(self.Object.NodeStart) - if hasattr(self.Object,"NodeEnd"): - c.append(self.Object.NodeEnd) + if hasattr(self.Object,"NodePos"): + c.append(self.Object.NodePos) + if hasattr(self.Object,"NodeNeg"): + c.append(self.Object.NodeNeg) return c def getIcon(self): ''' Return the icon which will appear in the tree view. This method is optional and if not defined a default icon is shown. ''' - return os.path.join(iconPath, 'port_icon.svg') + return os.path.join(iconPath, 'EM_FHPort.svg') def __getstate__(self): return None @@ -223,7 +221,7 @@ class _CommandFHPort: ''' The EM FastHenry Port (FHPort) command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'port_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHPort.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHPort","FHPort"), 'Accel': "E, P", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHPort","Creates a FastHenry Port object from two FHNodes")} @@ -251,7 +249,7 @@ class _CommandFHPort: if startNode <> None and endNode <> None: FreeCAD.ActiveDocument.openTransaction(translate("EM","Create FHPort")) FreeCADGui.addModule("EM") - FreeCADGui.doCommand('obj=EM.makeFHPort(nodeStart=FreeCAD.ActiveDocument.'+startNode.Name+',nodeEnd=FreeCAD.ActiveDocument.'+endNode.Name+')') + FreeCADGui.doCommand('obj=EM.makeFHPort(nodePos=FreeCAD.ActiveDocument.'+startNode.Name+',nodeNeg=FreeCAD.ActiveDocument.'+endNode.Name+')') # autogrouping, for later on #FreeCADGui.addModule("Draft") #FreeCADGui.doCommand("Draft.autogroup(obj)") diff --git a/EM_FHSegment.py b/EM_FHSegment.py index 9833d79..23c73ee 100644 --- a/EM_FHSegment.py +++ b/EM_FHSegment.py @@ -56,7 +56,7 @@ else: __dir__ = os.path.dirname(__file__) iconPath = os.path.join( __dir__, 'Resources' ) -def makeFHSegment(baseobj=None,nodeStart=None,nodeEnd=None,name='FHSegment'): +def makeFHSegment(baseobj=None,nodeStart=None,nodeEnd=None,width=None,height=None,name='FHSegment'): ''' Creates a FastHenry segment ('E' statement in FastHenry) 'baseobj' is the line object on which the node is based. @@ -64,6 +64,8 @@ def makeFHSegment(baseobj=None,nodeStart=None,nodeEnd=None,name='FHSegment'): 'nodeStart' and 'nodeEnd' parameters. 'nodeStart' is the segment starting node FHNode object 'nodeEnd' is the segment ending node FHNode object + 'width' is the segment width + 'height' is the segment height 'name' is the name of the object Example: @@ -98,6 +100,10 @@ def makeFHSegment(baseobj=None,nodeStart=None,nodeEnd=None,name='FHSegment'): FreeCAD.Console.PrintWarning(translate("EM","FHSegments can only be based on Line objects (not multi-segment wires)")) else: FreeCAD.Console.PrintWarning(translate("EM","FHSegments can only be based on Line objects")) + if width: + obj.Width = float(width) + if height: + obj.Height = float(height) # hide the base object if obj.Base and FreeCAD.GuiUp: obj.Base.ViewObject.hide() @@ -273,7 +279,7 @@ class _ViewProviderFHSegment: ''' Return the icon which will appear in the tree view. This method is optional and if not defined a default icon is shown. ''' - return os.path.join(iconPath, 'segment_icon.svg') + return os.path.join(iconPath, 'EM_FHSegment.svg') def __getstate__(self): return None @@ -285,7 +291,7 @@ class _CommandFHSegment: ''' The EM FastHenry Segment (FHSegment) command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'segment_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHSegment.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHSegment","FHSegment"), 'Accel': "E, S", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHSegment","Creates a FastHenry Segment object from scratch, from a selected base object (wire), or from two FHNodes")} diff --git a/EM_FHSolver.py b/EM_FHSolver.py index 24e05eb..6255456 100644 --- a/EM_FHSolver.py +++ b/EM_FHSolver.py @@ -247,7 +247,7 @@ class _ViewProviderFHSolver: ''' Return the icon which will appear in the tree view. This method is optional and if not defined a default icon is shown. ''' - return os.path.join(iconPath, 'solver_icon.svg') + return os.path.join(iconPath, 'EM_FHSolver.svg') def __getstate__(self): return None @@ -259,7 +259,7 @@ class _CommandFHSolver: ''' The EM FastHenry Solver command definition ''' def GetResources(self): - return {'Pixmap' : os.path.join(iconPath, 'solver_icon.svg') , + return {'Pixmap' : os.path.join(iconPath, 'EM_FHSolver.svg') , 'MenuText': QT_TRANSLATE_NOOP("EM_FHSolver","FHSolver"), 'Accel': "E, X", 'ToolTip': QT_TRANSLATE_NOOP("EM_FHSolver","Creates a FastHenry Solver object")} diff --git a/Resources/EMWorkbench.svg b/Resources/EMWorkbench.svg index f4a1131..cf58811 100644 --- a/Resources/EMWorkbench.svg +++ b/Resources/EMWorkbench.svg @@ -15,9 +15,37 @@ id="svg2816" version="1.1" inkscape:version="0.91 r13725" - sodipodi:docname="EMWorkbench.svg"> + sodipodi:docname="EMWorkbench.svg" + inkscape:export-filename="C:\Users\ediloren\AppData\Roaming\FreeCAD\Mod\EM\Resources\EMWorkbench.png" + inkscape:export-xdpi="90" + inkscape:export-ydpi="90"> + EM Workbench + + + + + + + + @@ -342,6 +370,78 @@ id="stop2273-87" style="stop-color:#000000;stop-opacity:0;" /> + + + + + + + + + + + + + + inkscape:window-width="725" + inkscape:window-height="403" + inkscape:window-x="1130" + inkscape:window-y="457" + inkscape:window-maximized="0" + inkscape:snap-global="true" + borderlayer="true" + gridtolerance="10000" + inkscape:snap-perpendicular="false" + inkscape:snap-tangential="false" + inkscape:snap-grids="true" + inkscape:snap-nodes="false" + inkscape:snap-others="false" + inkscape:snap-to-guides="false"> + snapvisiblegridlinesonly="false" + spacingx="1" + spacingy="1" + dotted="false" /> @@ -386,30 +497,29 @@ image/svg+xml - + EM Workbench - [triplus] + FastFieldSolvers S.R.L. - ArchWorkbench - 2016-02-26 - http://www.freecadweb.org/wiki/index.php?title=Artwork + 2019/01/10 + https://www.freecadweb.org/wiki/Artwork_Guidelines FreeCAD - FreeCAD/src/Mod/Arch/Resources/icons/ArchWorkbench.svg + - FreeCAD LGPL2+ + LGPL2+ https://www.gnu.org/copyleft/lesser.html - [agryson] Alexander Gryson + @@ -420,85 +530,74 @@ inkscape:label="Layer 1" inkscape:groupmode="layer"> + cy="46" + cx="18" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient3606);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.91892004;stroke-miterlimit:4;stroke-dasharray:none;marker:none;enable-background:accumulate" + id="path2826" + rx="12.970181" + ry="12.845634" /> + cy="46" + cx="18" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4295);stroke:#729fcf;stroke-width:1.865;stroke-miterlimit:4;stroke-dasharray:none;marker:none;enable-background:accumulate;fill-opacity:1" + id="path2826-4" + rx="11.067488" + ry="11.067487" /> - - - + + cy="18" + cx="46" + style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient3606-1);fill-opacity:1;fill-rule:evenodd;stroke:#280000;stroke-width:1.91892004;stroke-miterlimit:4;stroke-dasharray:none;marker:none;enable-background:accumulate" + id="path2826-5" + rx="12.970181" + ry="12.845634" /> + + + - diff --git a/Resources/segment_icon.svg b/Resources/EM_FHEquiv.svg similarity index 71% rename from Resources/segment_icon.svg rename to Resources/EM_FHEquiv.svg index e69a86f..ea941ca 100644 --- a/Resources/segment_icon.svg +++ b/Resources/EM_FHEquiv.svg @@ -10,14 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="64px" - height="64px" - id="svg2816" - version="1.1" + sodipodi:docname="EM_FHEquiv.svg" inkscape:version="0.91 r13725" - sodipodi:docname="segment_icon.svg"> + version="1.1" + id="svg2816" + height="64px" + width="64px"> + EM Workbench + + + + @@ -44,10 +58,10 @@ + + + inkscape:object-paths="true" + inkscape:snap-bbox-midpoints="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + showgrid="true" + inkscape:current-layer="layer1" + inkscape:cy="18.951574" + inkscape:cx="-107.02461" + inkscape:zoom="5.6568543" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" + inkscape:snap-grids="true"> + snapvisiblegridlinesonly="true" + spacingx="1" + spacingy="1" /> @@ -386,30 +425,29 @@ image/svg+xml - + EM Workbench - [triplus] + FastFieldSolvers S.R.L. - ArchWorkbench - 2016-02-26 - http://www.freecadweb.org/wiki/index.php?title=Artwork + 2019/01/10 + https://www.freecadweb.org/wiki/Artwork_Guidelines FreeCAD - FreeCAD/src/Mod/Arch/Resources/icons/ArchWorkbench.svg + - FreeCAD LGPL2+ + LGPL2+ https://www.gnu.org/copyleft/lesser.html - [agryson] Alexander Gryson + @@ -419,61 +457,38 @@ id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer"> - - - - - - - - - + + + + + diff --git a/Resources/inputfile_icon.svg b/Resources/EM_FHInputFile.svg similarity index 86% rename from Resources/inputfile_icon.svg rename to Resources/EM_FHInputFile.svg index d5aa732..2a82e69 100644 --- a/Resources/inputfile_icon.svg +++ b/Resources/EM_FHInputFile.svg @@ -14,9 +14,11 @@ height="64" id="svg2" version="1.1" - inkscape:version="0.48.5 r10040" - sodipodi:docname="Std_WindowNext.svg" + inkscape:version="0.91 r13725" + sodipodi:docname="EM_FHInputFile.svg" viewBox="0 0 64 64"> + EM Workbench + style="stop-color:#fcaf3e;stop-opacity:1" /> + style="stop-color:#f57900;stop-opacity:1" /> @@ -142,7 +144,24 @@ image/svg+xml - + EM Workbench + 2019/01/10 + + + FreeCAD icon, plus FastFieldSolvers S.R.L. modifications + + + + + LGPL2+ + + + + + FreeCAD + + + https://www.freecadweb.org/wiki/Artwork_Guidelines @@ -196,7 +215,7 @@ + + + + EM Workbench + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + EM Workbench + + + FastFieldSolvers S.R.L. + + + 2019/01/10 + https://www.freecadweb.org/wiki/Artwork_Guidelines + + + FreeCAD + + + + + + LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + diff --git a/Resources/EM_FHPath.svg b/Resources/EM_FHPath.svg new file mode 100644 index 0000000..9734321 --- /dev/null +++ b/Resources/EM_FHPath.svg @@ -0,0 +1,605 @@ + + + + + EM Workbench + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + EM Workbench + + + FastFieldSolvers S.R.L. + + + 2019/01/10 + https://www.freecadweb.org/wiki/Artwork_Guidelines + + + FreeCAD + + + + + + LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/EM_FHPlane.svg b/Resources/EM_FHPlane.svg new file mode 100644 index 0000000..9384157 --- /dev/null +++ b/Resources/EM_FHPlane.svg @@ -0,0 +1,537 @@ + + + + + EM Workbench + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + EM Workbench + + + FastFieldSolvers S.R.L. + + + 2019/01/10 + https://www.freecadweb.org/wiki/Artwork_Guidelines + + + FreeCAD + + + + + + LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + diff --git a/Resources/plane_addremovenodehole_icon.svg b/Resources/EM_FHPlaneAddRemoveNodeHole.svg similarity index 56% rename from Resources/plane_addremovenodehole_icon.svg rename to Resources/EM_FHPlaneAddRemoveNodeHole.svg index 9bf0826..7c65030 100644 --- a/Resources/plane_addremovenodehole_icon.svg +++ b/Resources/EM_FHPlaneAddRemoveNodeHole.svg @@ -10,14 +10,40 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="64px" - height="64px" - id="svg2816" - version="1.1" + sodipodi:docname="EM_FHPlaneAddRemoveNodeHole.svg" inkscape:version="0.91 r13725" - sodipodi:docname="plane_addremovenodehole_icon.svg"> + version="1.1" + id="svg2816" + height="64px" + width="64px"> + EM Workbench + + + + + + + + @@ -44,10 +70,10 @@ + xlink:href="#linearGradient3884" + id="linearGradient3890" + x1="50.11961" + y1="38.894291" + x2="45.327534" + y2="21.83534" + gradientUnits="userSpaceOnUse" /> + inkscape:collect="always" + id="linearGradient3884"> + id="stop3886" /> + + + + + + + + + id="stop4725" /> - - - + inkscape:object-paths="true" + inkscape:snap-bbox-midpoints="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + showgrid="true" + inkscape:current-layer="layer1" + inkscape:cy="22.589451" + inkscape:cx="62.415847" + inkscape:zoom="5.6568543" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base"> + snapvisiblegridlinesonly="true" + spacingx="1" + spacingy="1" /> @@ -465,30 +518,29 @@ image/svg+xml - + EM Workbench - [triplus] + FastFieldSolvers S.R.L. - ArchWorkbench - 2016-02-26 - http://www.freecadweb.org/wiki/index.php?title=Artwork + 2019/01/10 + https://www.freecadweb.org/wiki/Artwork_Guidelines FreeCAD - FreeCAD/src/Mod/Arch/Resources/icons/ArchWorkbench.svg + - FreeCAD LGPL2+ + LGPL2+ https://www.gnu.org/copyleft/lesser.html - [agryson] Alexander Gryson + @@ -498,142 +550,100 @@ id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer"> - + + + + + + + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccc" /> + + + + - - - - - - - - - - - - - - + id="path4317" + d="m 21.334411,55.462105 c 0,2.316902 -3.839679,4.197644 -8.563322,4.197644 -4.7236434,0 -8.5633245,-1.880742 -8.5633245,-4.197644 0,-2.344141 3.8396811,-4.224905 8.5633245,-4.224905 4.723643,0 8.563322,1.880764 8.563322,4.224905 z" + style="fill:url(#linearGradient4331);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + - - diff --git a/Resources/planehole_icon.svg b/Resources/EM_FHPlaneHole.svg similarity index 85% rename from Resources/planehole_icon.svg rename to Resources/EM_FHPlaneHole.svg index 37309c1..e9c74c0 100644 --- a/Resources/planehole_icon.svg +++ b/Resources/EM_FHPlaneHole.svg @@ -10,14 +10,28 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="64px" - height="64px" - id="svg2816" - version="1.1" + sodipodi:docname="EM_FHPlaneHole.svg" inkscape:version="0.91 r13725" - sodipodi:docname="planehole_icon.svg"> + version="1.1" + id="svg2816" + height="64px" + width="64px"> + EM Workbench + + + + @@ -44,10 +58,10 @@ + + inkscape:object-paths="true" + inkscape:snap-bbox-midpoints="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + showgrid="true" + inkscape:current-layer="layer1" + inkscape:cy="21.956778" + inkscape:cx="-75.863067" + inkscape:zoom="5.6568543" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base"> + snapvisiblegridlinesonly="true" + spacingx="1" + spacingy="1" /> @@ -386,30 +413,29 @@ image/svg+xml - + EM Workbench - [triplus] + FastFieldSolvers S.R.L. - ArchWorkbench - 2016-02-26 - http://www.freecadweb.org/wiki/index.php?title=Artwork + 2019/01/10 + https://www.freecadweb.org/wiki/Artwork_Guidelines FreeCAD - FreeCAD/src/Mod/Arch/Resources/icons/ArchWorkbench.svg + - FreeCAD LGPL2+ + LGPL2+ https://www.gnu.org/copyleft/lesser.html - [agryson] Alexander Gryson + @@ -420,11 +446,11 @@ inkscape:label="Layer 1" inkscape:groupmode="layer"> + style="fill:url(#linearGradient4827);fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="path4819" + cx="31.908195" + cy="32.091805" + rx="23.246136" + ry="11.578874" /> diff --git a/Resources/port_icon.svg b/Resources/EM_FHPort.svg similarity index 86% rename from Resources/port_icon.svg rename to Resources/EM_FHPort.svg index 169eb8d..0713090 100644 --- a/Resources/port_icon.svg +++ b/Resources/EM_FHPort.svg @@ -15,9 +15,11 @@ id="svg3074" sodipodi:version="0.32" inkscape:version="0.91 r13725" - sodipodi:docname="port_icon.svg" + sodipodi:docname="EM_FHPort.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.1"> + EM Workbench + inkscape:window-maximized="0"> image/svg+xml - Draft_Upgrade + EM Workbench - Mon Oct 10 13:44:52 2011 +0000 + 2019/01/10 - [wmayer] + FreeCAD icon, plus FastFieldSolvers S.R.L. modifications - FreeCAD LGPL2+ + LGPL2+ @@ -172,20 +174,17 @@ FreeCAD - FreeCAD/src/Mod/Draft/Resources/icons/Draft_Upgrade.svg - http://www.freecadweb.org/wiki/index.php?title=Artwork + + https://www.freecadweb.org/wiki/Artwork_Guidelines - [agryson] Alexander Gryson + - - arrow - up - + - A large blue arrow pointing upwards + diff --git a/Resources/plane_icon.svg b/Resources/EM_FHSegment.svg similarity index 66% rename from Resources/plane_icon.svg rename to Resources/EM_FHSegment.svg index 7db8bc0..f2c26a6 100644 --- a/Resources/plane_icon.svg +++ b/Resources/EM_FHSegment.svg @@ -10,14 +10,40 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="64px" - height="64px" - id="svg2816" - version="1.1" + sodipodi:docname="EM_FHSegment.svg" inkscape:version="0.91 r13725" - sodipodi:docname="plane_icon.svg"> + version="1.1" + id="svg2816" + height="64px" + width="64px"> + EM Workbench + + + + + + + + @@ -44,10 +70,10 @@ + + + + + + + + inkscape:object-paths="true" + inkscape:snap-bbox-midpoints="true" + inkscape:snap-bbox-edge-midpoints="true" + inkscape:bbox-nodes="true" + inkscape:bbox-paths="true" + inkscape:snap-bbox="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + showgrid="true" + inkscape:current-layer="layer1" + inkscape:cy="21.956778" + inkscape:cx="-75.863067" + inkscape:zoom="5.6568543" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base"> + snapvisiblegridlinesonly="true" + spacingx="1" + spacingy="1" /> @@ -386,30 +458,29 @@ image/svg+xml - + EM Workbench - [triplus] + FastFieldSolvers S.R.L. - ArchWorkbench - 2016-02-26 - http://www.freecadweb.org/wiki/index.php?title=Artwork + 2019/01/10 + https://www.freecadweb.org/wiki/Artwork_Guidelines FreeCAD - FreeCAD/src/Mod/Arch/Resources/icons/ArchWorkbench.svg + - FreeCAD LGPL2+ + LGPL2+ https://www.gnu.org/copyleft/lesser.html - [agryson] Alexander Gryson + @@ -419,89 +490,55 @@ id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer"> - - - - - - - - + + style="fill:#fcaf3e;fill-rule:evenodd;stroke:#321900;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" + d="M 58.513086,14.148972 23.688077,35.715729 4.7729708,25.993011 39.774756,4.0727005 Z" + id="path4602" + inkscape:connector-curvature="0" /> + sodipodi:nodetypes="ccccc" /> + style="fill:none;fill-rule:evenodd;stroke:#fcaf3e;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none" + d="M 8.662058,25.993011 39.774756,6.3707975 54.270445,14.148972 23.688077,33.417632 Z" + id="path4606" + inkscape:connector-curvature="0" /> + sodipodi:nodetypes="ccccc" /> + + diff --git a/Resources/solver_icon.svg b/Resources/EM_FHSolver.svg similarity index 67% rename from Resources/solver_icon.svg rename to Resources/EM_FHSolver.svg index 88abff2..1fb9755 100644 --- a/Resources/solver_icon.svg +++ b/Resources/EM_FHSolver.svg @@ -15,11 +15,24 @@ id="svg2860" sodipodi:version="0.32" inkscape:version="0.91 r13725" - sodipodi:docname="solver_icon.svg" + sodipodi:docname="EM_FHSolver.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.1"> + EM Workbench + + + + + @@ -98,7 +120,24 @@ image/svg+xml - + EM Workbench + 2019/01/10 + + + FastFieldSolvers S.R.L. + + + + + LGPL2+ + + + + + FreeCAD + + + https://www.freecadweb.org/wiki/Artwork_Guidelines @@ -108,7 +147,7 @@ inkscape:groupmode="layer"> S + y="54" + style="fill-opacity:1;fill:url(#linearGradient4148)">S diff --git a/Resources/equiv_icon.svg b/Resources/equiv_icon.svg deleted file mode 100644 index 0c56abd..0000000 --- a/Resources/equiv_icon.svg +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [wmayer] - - - Sketcher_CreatePoint - 2011-10-10 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreatePoint.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - diff --git a/Resources/node_icon.svg b/Resources/node_icon.svg deleted file mode 100644 index 1f1ba15..0000000 --- a/Resources/node_icon.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [wmayer] - - - Sketcher_CreatePoint - 2011-10-10 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreatePoint.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - diff --git a/Resources/path_icon.svg b/Resources/path_icon.svg deleted file mode 100644 index 3f9327f..0000000 --- a/Resources/path_icon.svg +++ /dev/null @@ -1,599 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [triplus] - - - ArchWorkbench - 2016-02-26 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Arch/Resources/icons/ArchWorkbench.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/export_to_FastHenry.py b/export_to_FastHenry.py index 778b961..50a081f 100644 --- a/export_to_FastHenry.py +++ b/export_to_FastHenry.py @@ -471,3 +471,219 @@ def create_FH_plane(filename="", seg1=10, seg2=10, wx=10, wy=10, name="", custDo fid.closed +def meshSolidWithSegments(obj=None,delta=1.0,deltaX=0.0,deltaY=0.0,deltaZ=0.0,stayInside=False,generateSegs=True): + ''' Mesh a solid object with a grid of segments +''' + if obj == None: + return + if not hasattr(obj,"Shape"): + return + from FreeCAD import Vector + import EM_FHNode + import EM_FHSegment + import numpy as np + # if the user specified no deltaX + if deltaX <= 0.0: + deltaX = float(delta) + # if the user specified no deltaY + if deltaY <= 0.0: + deltaY = float(delta) + # if the user specified no deltaZ + if deltaZ <= 0.0: + deltaZ = float(delta) + bbox = obj.Shape.BoundBox + stepsX = int(bbox.XLength/deltaX) + deltaSideX = (bbox.XLength - deltaX * stepsX) / 2.0 + stepsY = int(bbox.YLength/deltaY) + deltaSideY = (bbox.YLength - deltaY * stepsY) / 2.0 + stepsZ = int(bbox.ZLength/deltaZ) + deltaSideZ = (bbox.ZLength - deltaZ * stepsZ) / 2.0 + # create the 3D array of nodes + isNode=np.full((stepsX+1,stepsY+1,stepsZ+1), False, np.bool) + # and now iterate to find which node is inside the object 'obj' + pos_x = bbox.XMin + deltaSideX + for step_x in range(0,stepsX+1): + pos_y = bbox.YMin + deltaSideY + for step_y in range(0,stepsY+1): + pos_z = bbox.ZMin + deltaSideZ + for step_z in range(0,stepsZ+1): + # if the point is inside the object shape, or on the surface, flag it + if obj.Shape.isInside(Vector(pos_x,pos_y,pos_z),0.0,True): + isNode[step_x,step_y,step_z] = True + pos_z = pos_z + deltaZ + pos_y = pos_y + deltaY + pos_x = pos_x + deltaX + # if we don't need to stay within the object shape boundaries, + # the segment will overlap the shape contour (just like the uniform conductive planes) + nodes=np.full((stepsX+1,stepsY+1,stepsZ+1), None, np.object) + if stayInside == False: + pos_x = bbox.XMin + deltaSideX + for step_x in range(0,stepsX+1): + pos_y = bbox.YMin + deltaSideY + for step_y in range(0,stepsY+1): + pos_z = bbox.ZMin + deltaSideZ + for step_z in range(0,stepsZ+1): + # if the point is inside the object shape, or on the surface, flag it + if isNode[step_x,step_y,step_z] == True: + # create the node + node = EM_FHNode.makeFHNode(X=pos_x, Y=pos_y, Z=pos_z) + # store it in the array + nodes[step_x,step_y,step_z] = node + pos_z = pos_z + deltaZ + pos_y = pos_y + deltaY + pos_x = pos_x + deltaX + # if we must stay within the object shape boundaries (within the accuracy + # of the point sampling) + else: + pos_x = bbox.XMin + deltaSideX + for step_x in range(0,stepsX): + pos_y = bbox.YMin + deltaSideY + for step_y in range(0,stepsY): + pos_z = bbox.ZMin + deltaSideZ + for step_z in range(0,stepsZ): + # if all the eight cube corners are inside the object shape, + # we consider the center point well inside the object shape, i.e. also + # for a segment lying on a plane parallel to the plane xy, + # with width=deltaX, height=deltaY we are within the object + if (isNode[step_x,step_y,step_z] == True and isNode[step_x+1,step_y,step_z] == True and + isNode[step_x,step_y+1,step_z] == True and isNode[step_x+1,step_y+1,step_z] == True and + isNode[step_x,step_y,step_z+1] == True and isNode[step_x+1,step_y,step_z+1] == True and + isNode[step_x,step_y+1,step_z+1] == True and isNode[step_x+1,step_y+1,step_z+1] == True): + # create the node + node = EM_FHNode.makeFHNode(X=pos_x+deltaX/2.0, Y=pos_y+deltaY/2.0, Z=pos_z+deltaZ/2.0) + # store it in the array + nodes[step_x,step_y,step_z] = node + pos_z = pos_z + deltaZ + pos_y = pos_y + deltaY + pos_x = pos_x + deltaX + # now create the grid of segments + # first along x + for step_z in range(0,stepsZ+1): + for step_y in range(0,stepsY+1): + for step_x in range(0,stepsX): + # if the node and the next are inside the object shape, create the segment + if nodes[step_x,step_y,step_z] <> None and nodes[step_x+1,step_y,step_z] <> None: + segment = EM_FHSegment.makeFHSegment(nodeStart=nodes[step_x,step_y,step_z],nodeEnd=nodes[step_x+1,step_y,step_z],width=deltaX,height=deltaZ) + # then along y + for step_z in range(0,stepsZ+1): + for step_x in range(0,stepsX+1): + for step_y in range(0,stepsY): + # if the node and the next are inside the object shape, create the segment + if nodes[step_x,step_y,step_z] <> None and nodes[step_x,step_y+1,step_z] <> None: + segment = EM_FHSegment.makeFHSegment(nodeStart=nodes[step_x,step_y,step_z],nodeEnd=nodes[step_x,step_y+1,step_z],width=deltaY,height=deltaZ) + # finally along z + for step_x in range(0,stepsX+1): + for step_y in range(0,stepsY+1): + for step_z in range(0,stepsZ): + # if the node and the next are inside the object shape, create the segment + if nodes[step_x,step_y,step_z] <> None and nodes[step_x,step_y,step_z+1] <> None: + segment = EM_FHSegment.makeFHSegment(nodeStart=nodes[step_x,step_y,step_z],nodeEnd=nodes[step_x,step_y,step_z+1],width=deltaX,height=deltaY) + +def meshSolidWithVoxels(obj=None,delta=1.0,stayInside=False): + ''' Voxel a solid object +''' + if obj == None: + return + if not hasattr(obj,"Shape"): + return + from FreeCAD import Vector + import numpy as np + bbox = obj.Shape.BoundBox + stepsX = int(bbox.XLength/delta) + deltaSideX = (bbox.XLength - delta * stepsX) / 2.0 + stepsY = int(bbox.YLength/delta) + deltaSideY = (bbox.YLength - delta * stepsY) / 2.0 + stepsZ = int(bbox.ZLength/delta) + deltaSideZ = (bbox.ZLength - delta * stepsZ) / 2.0 + print("X="+str(stepsX)+" Y="+str(stepsY)+" Z="+str(stepsZ)+" tot="+str(stepsX*stepsY*stepsZ)) + # create the 3D array of nodes + isNode=np.full((stepsX+1,stepsY+1,stepsZ+1), False, np.bool) + # and now iterate to find which point is inside the object 'obj' + pos_x = bbox.XMin + deltaSideX + for step_x in range(0,stepsX+1): + pos_y = bbox.YMin + deltaSideY + for step_y in range(0,stepsY+1): + pos_z = bbox.ZMin + deltaSideZ + for step_z in range(0,stepsZ+1): + # if the point is inside the object shape, or on the surface, flag it + if obj.Shape.isInside(Vector(pos_x,pos_y,pos_z),0.0,True): + isNode[step_x,step_y,step_z] = True + pos_z = pos_z + delta + pos_y = pos_y + delta + pos_x = pos_x + delta + return isNode + # if we must don't need to stay within the object shape boundaries, + # the voxel will overlap the shape contour +# nodes=np.full((stepsX+1,stepsY+1,stepsZ+1), None, np.object) +# if stayInside == False: +# pos_x = bbox.XMin + deltaSideX +# for step_x in range(0,stepsX+1): +# pos_y = bbox.YMin + deltaSideY +# for step_y in range(0,stepsY+1): +# pos_z = bbox.ZMin + deltaSideZ +# for step_z in range(0,stepsZ+1): +# # if the point is inside the object shape, or on the surface, flag it +# if isNode[step_x,step_y,step_z] == True: +# # create the node +# node = EM_FHNode.makeFHNode(X=pos_x, Y=pos_y, Z=pos_z) +# # store it in the array +# nodes[step_x,step_y,step_z] = node +# pos_z = pos_z + deltaZ +# pos_y = pos_y + deltaY +# pos_x = pos_x + deltaX +# # if we must stay within the object shape boundaries (within the accuracy +# # of the point sampling) +# else: +# pos_x = bbox.XMin + deltaSideX +# for step_x in range(0,stepsX): +# pos_y = bbox.YMin + deltaSideY +# for step_y in range(0,stepsY): +# pos_z = bbox.ZMin + deltaSideZ +# for step_z in range(0,stepsZ): +# # if all the eight cube corners are inside the object shape, +# # we consider the center point well inside the object shape, i.e. also +# # for a segment lying on a plane parallel to the plane xy, +# # with width=deltaX, height=deltaY we are within the object +# if (isNode[step_x,step_y,step_z] == True and isNode[step_x+1,step_y,step_z] == True and +# isNode[step_x,step_y+1,step_z] == True and isNode[step_x+1,step_y+1,step_z] == True and +# isNode[step_x,step_y,step_z+1] == True and isNode[step_x+1,step_y,step_z+1] == True and +# isNode[step_x,step_y+1,step_z+1] == True and isNode[step_x+1,step_y+1,step_z+1] == True): +# # create the node +# node = EM_FHNode.makeFHNode(X=pos_x+deltaX/2.0, Y=pos_y+deltaY/2.0, Z=pos_z+deltaZ/2.0) +# # store it in the array +# nodes[step_x,step_y,step_z] = node +# pos_z = pos_z + deltaZ +# pos_y = pos_y + deltaY +# pos_x = pos_x + deltaX +# # now create the grid of segments +# # first along x +# for step_z in range(0,stepsZ+1): +# for step_y in range(0,stepsY+1): +# for step_x in range(0,stepsX): +# # if the node and the next are inside the object shape, create the segment +# if nodes[step_x,step_y,step_z] <> None and nodes[step_x+1,step_y,step_z] <> None: +# segment = EM_FHSegment.makeFHSegment(nodeStart=nodes[step_x,step_y,step_z],nodeEnd=nodes[step_x+1,step_y,step_z],width=deltaX,height=deltaZ) +# # then along y +# for step_z in range(0,stepsZ+1): +# for step_x in range(0,stepsX+1): +# for step_y in range(0,stepsY): +# # if the node and the next are inside the object shape, create the segment +# if nodes[step_x,step_y,step_z] <> None and nodes[step_x,step_y+1,step_z] <> None: +# segment = EM_FHSegment.makeFHSegment(nodeStart=nodes[step_x,step_y,step_z],nodeEnd=nodes[step_x,step_y+1,step_z],width=deltaY,height=deltaZ) +# # finally along z +# for step_x in range(0,stepsX+1): +# for step_y in range(0,stepsY+1): +# for step_z in range(0,stepsZ): +# # if the node and the next are inside the object shape, create the segment +# if nodes[step_x,step_y,step_z] <> None and nodes[step_x,step_y,step_z+1] <> None: +# segment = EM_FHSegment.makeFHSegment(nodeStart=nodes[step_x,step_y,step_z],nodeEnd=nodes[step_x,step_y,step_z+1],width=deltaX,height=deltaY) +# + + +#bb = App.BoundBox(); +# +#objects = App.ActiveDocument.findObjects("Part::Feature") +#for object in objects: +# bb.add( object.Shape.BoundBox ) +# +#print bb \ No newline at end of file