DiscussionsIssue archiveOther usage issues

Archived discussion

Right angled coordinate system

Other usage issuesSat, 09/16/2006 - 05:591 reply

Browse this forum
QuestionAuthor

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

Author,
Larsen & Toubro e-Engineering solutions
Chennai

Discussion

1 archived reply

Posts are displayed in their archived order.

01Commenter-1

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.