DiscussionsIssue archiveOther usage issues

Archived discussion

Visual cutting / slicing

Other usage issuesTue, 10/20/2009 - 11:321 reply

Browse this forum
QuestionAuthor

Hello Folks,

I'm looking for a way to slice a model by a defined cut plane; but only for the purpose of visualization. Is there a way without copying the geometry to a temporary model and performing the boolean cut operation on it's solids?

Cheers,

Author

Discussion

1 archived reply

Posts are displayed in their archived order.

01Commenter-1

Have a look at :

1)Instanciating a V3d_Plane
2)V3d_View::SetPlaneOn(aPlane) activates the clipping plane;

also you can have a visual feedback of your plane by calling :

V3d_Plane::Display(aView);

Of course all of this if you use the OCC provided visualization package

PS : This is nothing more than the clipping capabillity provided by OpenGL

Commenter-1