DiscussionsIssue archiveOther usage issues

Archived discussion

Remove axis displayed while rendering objects

Other usage issuesThu, 05/05/2011 - 19:143 replies

Browse this forum
QuestionAuthor

I'm not sure what is the exact name of the axis that's displayed which showing objects in a viewer, but the attached picture might show what I need. I was wondering what's the function to inhibit the display of the x/y/z axis that are overlapping the model in the upper left corner.

Thanks.

Discussion

3 archived replies

Posts are displayed in their archived order.

01Commenter-1

That's the AIS_Trihedron. You can erase it by passing its handle to the Erase method of the AIS_InteractiveContext. You may redisplay it by passing its handle to the Display method of the AIS_InteractiveContext.

02Author

Sharjith, thanks for the reply. There seems to be an easier method V3d_View::TriedronErase() that just deletes it -- which is what I need in this case.

03Commenter-1

Cool, I learned something new! I never noticed that method. There's also one to display it back. Thanks for the feedback.