04-02-2018
05:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
04-02-2018
05:22 AM
Thanks, I see now that MOST work plane (and other work feature) creation methods do not work in an assembly. Since we are pretty much left with fixed, I ended up using your approach. Here's the portions that worked for me.
Thanks Again!
UnitVector xUV = transGeo.CreateUnitVector(1, 0, 0); UnitVector yUV = transGeo.CreateUnitVector(0, 1, 0); UnitVector zUV = transGeo.CreateUnitVector(0, 0, 1);
xPlane = workPlanes.AddFixed(centerPt.Point, yUV, zUV);
zPlane = workPlanes.AddFixed(centerPt.Point, xUV, yUV);
Best of Luck
---------------------------------------------------------------------------------------------------------------------------------
If you find this reply helpful or insightful, please use the 'Accept as Solution' or 'Kudos' button below.