Forum archiveIssue archiveOther usage issues

Archived discussion

Boolean Cut

Other usage issuesTue, 03/23/2004 - 20:012 replies

Browse this forum
QuestionAuthor

I have made a box using BRepPrimAPI_MakeBox(100, 100, 20);
and then I cut a cylinder from it (using BRepAlgoAPI_Cut) , and it worked fine and result looks like: http://www-hades.gsi.de/~biryukov/cascade/cut_primbox_cyl.jpg

after this I made another box from points (points->edges->wires->faces->shell->solid) and cut the cyllinder from new box(using BRepAlgoAPI_Cut). the result looked like bollean union. http://www-hades.gsi.de/~biryukov/cascade/cut_mybox_cyl.jpg

why could it happen?

Discussion

2 archived replies

Posts are displayed in their archived order.

01Commenter-1

Hi Peter,

Try to reverse your new box before cut.
I already had this problem.

See the recent thread :
http://www.opencascade.org/org/forum/thread_5769/

Regards,
Christian

02Commenter-2

Thank you, it works