Shop drawings for beams with processing

Ғылым және технология

How to automatically generate drawings only for the beams having any type of processing (holes or features).
Here is the script to exclude beams without any processing:
"
'Excludes beams without any processing (hole or feature)
Function checkElement(Obj)
bValid = True
'Verify only for beams
If Obj.IsKindOf(kBeamClass) = True Then
'Check features
If Obj.numFeatures = 0 Then
bValid = False
End If
End If
checkElement = bValid
End Function
"
Additional resources:
- www.autodesk.com/autodesk-uni...
- www.autodesk.com/autodesk-uni...

Пікірлер

    Келесі