05-24-2022
12:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
05-24-2022
12:36 PM
I did have a quick look at and this iLogic code did work for me.
Dim oPartDoc As PartDocument = ThisDoc.Document
Dim oCompDef As PartComponentDefinition = oPartDoc.ComponentDefinition
For Each oSB As SurfaceBody In oCompDef.SurfaceBodies
Dim oFacesCol As FaceCollection = ThisApplication.TransientObjects.CreateFaceCollection()
For Each oFace As Face In oSB.Faces
Call oFacesCol.Add(oFace)
Next
oCompDef.Features.ThickenFeatures.Add(oFacesCol, 0.5,
PartFeatureExtentDirectionEnum.kNegativeExtentDirection,
PartFeatureOperationEnum.kCutOperation)
Next
Jelte de Jong
Did you find this post helpful? Feel free to Like this post.
Did your question get successfully answered? Then click on the ACCEPT SOLUTION button.
Blog: hjalte.nl - github.com