
Sat, 09/16/2006 - 05:59
Forums:
Dear forum members, i'would like to use first angle projection in my CAD programming. in that positive "Z" coord should be towards the user and positive "Y" coord to be upwards and, positive "X" coord to be your right hand side. So that front view will have (XY) and Top view will have (XZ) and so on. pls let me know how to do this. i tried little bit, but i've not expexted result.
Thanking you
Yours
M.G.Thirunavukkarasu,
Larsen & Toubro e-Engineering solutions
Chennai
Sun, 09/17/2006 - 05:48
Hi,
You should have a look at the procedure V3d_View::SetProj() in the CDL file($CASROOT/ros/src/V3d/V3d_View.cdl).
Set front view : view->SetProj (V3d_Xpos);
Set top view : view->SetProj (V3d_Zpos);
etc.