Mirrored Part But Link To Original Part
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Can anybody help?
I have the following VBA macro that mirrors a part (ipt)
Public Function CreateMirrorPart()
Dim oDoc As PartDocument
Set oDoc = ThisApplication.ActiveDocument
Dim oCol As ObjectCollection
Set oCol = ThisApplication.TransientObjects.CreateObjectCollection
oCol.Add oDoc.ComponentDefinition.SurfaceBodies(1)
Dim oPlane As WorkPlane
Set oPlane = oDoc.ComponentDefinition.WorkPlanes(1)
Dim oMirror As MirrorFeature
Set oMirror = oDoc.ComponentDefinition.Features.MirrorFeatures.Add(oCol, oPlane, True, kOptimizedCompute)
oMirror.NewBodyOperation = True
End Function
I want to modify the VBA macro so that the mirrored part automatically updates if the original part is modified.
Can anybody update the above macro to allow me to do that?
Many thanks in advance!!!!
Darren