Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi I am struggling to find a way to get the body or bodies collection of a Part Mirror feature. Basically, if a Surface Body of a multi-body part was mirrored, instead of mirroring a feature or features.
Please see sample parts attached for clarity.
I have tried to retrieve the information from the MirrorFeatureDefinition object but cant seem to find a property that exposes the collection of mirrored surface bodies. The ParentFeatures property is empty in this case because its a not a feature mirror.
Any idea?
Function GetExtrudeFeatureFromMirror(oMirrorFeature As Inventor.MirrorFeature) As Inventor.SurfaceBody
Dim oDef As MirrorFeatureDefinition
oDef = oMirrorFeature.Definition
For Each oFeat In oDef.ParentFeatures
Next
Return Nothing
End Function
Solved! Go to Solution.