forked from shaise/FreeCAD_SheetMetal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SketchOnSheetMetalCmd.py
425 lines (363 loc) · 14 KB
/
SketchOnSheetMetalCmd.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
# -*- coding: utf-8 -*-
##############################################################################
#
# SketchOnSheetMetalCmd.py
#
# Copyright 2015 Shai Seger <shaise at gmail dot com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
#
##############################################################################
from FreeCAD import Gui
from PySide import QtCore, QtGui
import FreeCAD, Part, os, math
__dir__ = os.path.dirname(__file__)
iconPath = os.path.join( __dir__, 'Resources', 'icons' )
smEpsilon = 0.0000001
import SheetMetalBendSolid
def smWarnDialog(msg):
diag = QtGui.QMessageBox(QtGui.QMessageBox.Warning, 'Error in macro MessageBox', msg)
diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_()
def smBelongToBody(item, body):
if (body is None):
return False
for obj in body.Group:
if obj.Name == item.Name:
return True
return False
def smIsPartDesign(obj):
return str(obj).find("<PartDesign::") == 0
def smIsOperationLegal(body, selobj):
#FreeCAD.Console.PrintLog(str(selobj) + " " + str(body) + " " + str(smBelongToBody(selobj, body)) + "\n")
if smIsPartDesign(selobj) and not smBelongToBody(selobj, body):
smWarnDialog("The selected geometry does not belong to the active Body.\nPlease make the container of this item active by\ndouble clicking on it.")
return False
return True
def smFace(sel_item, obj) :
# find face if Edge Selected
if type(sel_item) == Part.Edge :
Facelist = obj.ancestorsOfType(sel_item, Part.Face)
if Facelist[0].Area > Facelist[1].Area :
selFace = Facelist[0]
else :
selFace = Facelist[1]
elif type(sel_item) == Part.Face :
selFace = sel_item
return selFace
def smthk(obj, foldface) :
normal = foldface.normalAt(0,0)
theVol = obj.Volume
if theVol < 0.0001:
SMError("Shape is not a real 3D-object or to small for a metal-sheet!")
else:
# Make a first estimate of the thickness
estimated_thk = theVol/(obj.Area / 2.0)
# p1 = foldface.CenterOfMass
for v in foldface.Vertexes :
p1 = v.Point
p2 = p1 + estimated_thk * -1.5 * normal
e1 = Part.makeLine(p1, p2)
thkedge = obj.common(e1)
thk = thkedge.Length
if thk > smEpsilon :
break
return thk
def smCutFace(Face, obj) :
# find face Modified During loop
for face in obj.Faces :
face_common = face.common(Face)
if face_common.Faces :
break
return face
def smGetEdge(Face, obj) :
# find face Modified During loop
for edge in obj.Edges :
face_common = edge.common(Face)
if face_common.Edges :
break
return edge
def equal_angle(ang1, ang2, p=5):
# compares two angles
result = False
if round(ang1 - ang2, p)==0:
result = True
if round((ang1-2.0*math.pi) - ang2, p)==0:
result = True
if round(ang1 - (ang2-2.0*math.pi), p)==0:
result = True
return result
def bendAngle(theFace, edge_vec) :
#Start to investigate the angles at self.__Shape.Faces[face_idx].ParameterRange[0]
#Part.show(theFace,"theFace")
#valuelist = theFace.ParameterRange
#print(valuelist)
angle_0 = theFace.ParameterRange[0]
angle_1 = theFace.ParameterRange[1]
# idea: identify the angle at edge_vec = P_edge.Vertexes[0].copy().Point
# This will be = angle_start
# calculate the tan_vec from valueAt
edgeAngle, edgePar = theFace.Surface.parameter(edge_vec)
#print('the angles: ', angle_0, ' ', angle_1, ' ', edgeAngle, ' ', edgeAngle - 2*math.pi)
if equal_angle(angle_0, edgeAngle):
angle_start = angle_0
angle_end = angle_1
else:
angle_start = angle_1
angle_end = angle_0
bend_angle = angle_end - angle_start
# angle_tan = angle_start + bend_angle/6.0 # need to have the angle_tan before correcting the sign
if bend_angle < 0.0:
bend_angle = -bend_angle
#print(math.degrees(bend_angle))
return math.degrees(bend_angle)
def smSketchOnSheetMetal(kfactor = 0.5, sketch = '', flipped = False, selFaceNames = '', MainObject = None):
resultSolid = MainObject.Shape.copy()
selElement = resultSolid.getElement(selFaceNames[0])
LargeFace = smFace(selElement, resultSolid)
sketch_face = Part.makeFace(sketch.Shape.Wires,"Part::FaceMakerBullseye")
#To get thk of sheet, top face normal
thk = smthk(resultSolid, LargeFace)
#print(thk)
#To get top face normal, flatsolid
solidlist = []
normal = LargeFace.normalAt(0,0)
#To check face direction
coeff = normal.dot(sketch_face.Faces[0].normalAt(0,0))
if coeff < 0 :
sketch_face.reverse()
Flatface = sketch_face.common(LargeFace)
BalanceFaces = sketch_face.cut(Flatface)
#Part.show(BalanceFace,"BalanceFace")
Flatsolid = Flatface.extrude(normal * -thk)
#Part.show(Flatsolid,"Flatsolid")
solidlist.append(Flatsolid)
if BalanceFaces.Faces :
for BalanceFace in BalanceFaces.Faces :
#Part.show(BalanceFace,"BalanceFace")
TopFace = LargeFace
#Part.show(TopFace,"TopFace")
#flipped = False
while BalanceFace.Faces :
BendEdge = smGetEdge(BalanceFace, TopFace)
#Part.show(BendEdge,"BendEdge")
facelist = resultSolid.ancestorsOfType(BendEdge, Part.Face)
#To get bend radius, bend angle
for cylface in facelist :
if issubclass(type(cylface.Surface),Part.Cylinder) :
break
if not(issubclass(type(cylface.Surface),Part.Cylinder)) :
break
#Part.show(cylface,"cylface")
for planeface in facelist :
if issubclass(type(planeface.Surface),Part.Plane) :
break
#Part.show(planeface,"planeface")
normal = planeface.normalAt(0,0)
revAxisV = cylface.Surface.Axis
revAxisP = cylface.Surface.Center
bendA = bendAngle(cylface, revAxisP)
#print([bendA, revAxisV, revAxisP, cylface.Orientation])
#To check bend direction
offsetface = cylface.makeOffsetShape(-thk, 0.0, fill = False)
#Part.show(offsetface,"offsetface")
if offsetface.Area < cylface.Area :
bendR = cylface.Surface.Radius - thk
flipped = True
else :
bendR = cylface.Surface.Radius
flipped = False
#To arrive unfold Length, neutralRadius
unfoldLength = ( bendR + kfactor * thk ) * abs(bendA) * math.pi / 180.0
neutralRadius = ( bendR + kfactor * thk )
#print([unfoldLength,neutralRadius])
#To get faceNormal, bend face
faceNormal = normal.cross(revAxisV).normalize()
#print(faceNormal)
if bendR < cylface.Surface.Radius :
offsetSolid = cylface.makeOffsetShape(bendR/2.0, 0.0, fill = True)
else:
offsetSolid = cylface.makeOffsetShape(-bendR/2.0, 0.0, fill = True)
#Part.show(offsetSolid,"offsetSolid")
tool = BendEdge.copy()
FaceArea = tool.extrude(faceNormal * -unfoldLength )
#Part.show(FaceArea,"FaceArea")
#Part.show(BalanceFace,"BalanceFace")
SolidFace = offsetSolid.common(FaceArea)
#Part.show(BendSolidFace,"BendSolidFace")
if not(SolidFace.Faces):
faceNormal = faceNormal * -1
FaceArea = tool.extrude(faceNormal * -unfoldLength )
BendSolidFace = BalanceFace.common(FaceArea)
#Part.show(FaceArea,"FaceArea")
#Part.show(BendSolidFace,"BendSolidFace")
#print([bendR, bendA, revAxisV, revAxisP, normal, flipped, BendSolidFace.Faces[0].normalAt(0,0)])
bendsolid = SheetMetalBendSolid.BendSolid(BendSolidFace.Faces[0], BendEdge, bendR, thk, neutralRadius, revAxisV, flipped)
#Part.show(bendsolid,"bendsolid")
solidlist.append(bendsolid)
if flipped == True:
bendA = -bendA
if not(SolidFace.Faces):
revAxisV = revAxisV * -1
sketch_face = BalanceFace.cut(BendSolidFace)
sketch_face.translate(faceNormal * unfoldLength)
#Part.show(sketch_face,"sketch_face")
sketch_face.rotate(revAxisP, -revAxisV, bendA)
#Part.show(sketch_face,"Rsketch_face")
TopFace = smCutFace(sketch_face, resultSolid)
#Part.show(TopFace,"TopFace")
#To get top face normal, flatsolid
normal = TopFace.normalAt(0,0)
Flatface = sketch_face.common(TopFace)
BalanceFace = sketch_face.cut(Flatface)
#Part.show(BalanceFace,"BalanceFace")
Flatsolid = Flatface.extrude(normal * -thk)
#Part.show(Flatsolid,"Flatsolid")
solidlist.append(Flatsolid)
#To get relief Solid fused
if len(solidlist) > 1 :
SMSolid = solidlist[0].multiFuse(solidlist[1:])
#Part.show(SMSolid,"SMSolid")
SMSolid = SMSolid.removeSplitter()
else :
SMSolid = solidlist[0]
#Part.show(SMSolid,"SMSolid")
resultSolid = resultSolid.cut(SMSolid)
Gui.ActiveDocument.getObject(MainObject.Name).Visibility = False
Gui.ActiveDocument.getObject(sketch.Name).Visibility = False
return resultSolid
class SMSketchOnSheet:
def __init__(self, obj):
'''"Add Sketch based cut On Sheet metal" '''
selobj = Gui.Selection.getSelectionEx()
_tip_ = QtCore.QT_TRANSLATE_NOOP("App::Property","Base Object")
obj.addProperty("App::PropertyLinkSub", "baseObject", "Parameters",_tip_).baseObject = (selobj[0].Object, selobj[0].SubElementNames)
_tip_ = QtCore.QT_TRANSLATE_NOOP("App::Property","Sketch on Sheetmetal")
obj.addProperty("App::PropertyLink","Sketch","Parameters",_tip_).Sketch = selobj[1].Object
_tip_ = QtCore.QT_TRANSLATE_NOOP("App::Property","Gap from Left Side")
obj.addProperty("App::PropertyFloatConstraint","kfactor","Parameters",_tip_).kfactor = (0.5,0.0,1.0,0.01)
obj.Proxy = self
def execute(self, fp):
'''"Print a short message when doing a recomputation, this method is mandatory" '''
s = smSketchOnSheetMetal(kfactor = fp.kfactor, sketch = fp.Sketch, selFaceNames = fp.baseObject[1], MainObject = fp.baseObject[0])
fp.Shape = s
class SMSketchOnSheetVP:
"A View provider that nests children objects under the created one"
def __init__(self, obj):
obj.Proxy = self
self.Object = obj.Object
def attach(self, obj):
self.Object = obj.Object
return
def updateData(self, fp, prop):
return
def getDisplayModes(self,obj):
modes=[]
return modes
def setDisplayMode(self,mode):
return mode
def onChanged(self, vp, prop):
return
def __getstate__(self):
# return {'ObjectName' : self.Object.Name}
return None
def __setstate__(self,state):
if state is not None:
import FreeCAD
doc = FreeCAD.ActiveDocument #crap
self.Object = doc.getObject(state['ObjectName'])
def claimChildren(self):
objs = []
if hasattr(self.Object,"baseObject"):
objs.append(self.Object.baseObject[0])
objs.append(self.Object.Sketch)
return objs
def getIcon(self):
return os.path.join( iconPath , 'SheetMetal_SketchOnSheet.svg')
class SMSketchOnSheetPDVP:
"A View provider that nests children objects under the created one"
def __init__(self, obj):
obj.Proxy = self
self.Object = obj.Object
def attach(self, obj):
self.Object = obj.Object
return
def updateData(self, fp, prop):
return
def getDisplayModes(self,obj):
modes=[]
return modes
def setDisplayMode(self,mode):
return mode
def onChanged(self, vp, prop):
return
def __getstate__(self):
# return {'ObjectName' : self.Object.Name}
return None
def __setstate__(self,state):
if state is not None:
import FreeCAD
doc = FreeCAD.ActiveDocument #crap
self.Object = doc.getObject(state['ObjectName'])
def claimChildren(self):
objs = []
if hasattr(self.Object,"Sketch"):
objs.append(self.Object.Sketch)
return objs
def getIcon(self):
return os.path.join( iconPath , 'SheetMetal_SketchOnSheet.svg')
class AddSketchOnSheetCommandClass():
"""Add Sketch On Sheet metal command"""
def GetResources(self):
return {'Pixmap' : os.path.join( iconPath , 'SheetMetal_SketchOnSheet.svg'), # the name of a svg file available in the resources
'MenuText': QtCore.QT_TRANSLATE_NOOP('SheetMetal','Sketch On Sheet metal'),
'Accel': "M, S",
'ToolTip' : QtCore.QT_TRANSLATE_NOOP('SheetMetal',' Extruded cut from Sketch On Sheet metal faces\n'
'1. Select a flat face on sheet metal and\n'
'2. Select a sketch on same face to create sheetmetal extruded cut.\n'
'3. Use Property editor to modify other parameters')}
def Activated(self):
doc = FreeCAD.ActiveDocument
view = Gui.ActiveDocument.ActiveView
activeBody = None
selobj = Gui.Selection.getSelectionEx()[0].Object
if hasattr(view,'getActiveObject'):
activeBody = view.getActiveObject('pdbody')
if not smIsOperationLegal(activeBody, selobj):
return
doc.openTransaction("SketchOnSheet")
if activeBody is None or not smIsPartDesign(selobj):
a = doc.addObject("Part::FeaturePython","SketchOnSheet")
SMSketchOnSheet(a)
SMSketchOnSheetVP(a.ViewObject)
else:
#FreeCAD.Console.PrintLog("found active body: " + activeBody.Name)
a = doc.addObject("PartDesign::FeaturePython","SketchOnSheet")
SMSketchOnSheet(a)
SMSketchOnSheetPDVP(a.ViewObject)
activeBody.addObject(a)
doc.recompute()
doc.commitTransaction()
return
def IsActive(self):
if len(Gui.Selection.getSelection()) < 2 :
return False
# selobj = Gui.Selection.getSelection()[1]
# if str(type(selobj)) != "<type 'Sketcher.SketchObject'>" :
# return False
return True
Gui.addCommand('SMSketchOnSheet',AddSketchOnSheetCommandClass())