Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
NSBowser
in reply to: Frederick_Law

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.