
Thu, 07/14/2022 - 12:13
Forums:
Hello, I want to get a model that eliminates shape2 from shape1. However, the following program returns an error. Does anyone know what the problem is?
[Code]
BRepAlgoAPI_Cut cut( shape1, shape2 );
cut.Build();
cut.isDone(); // <- Standard_False
[Environment]
Opencascade: V7.5.3
OS: Windows 10 Pro 64bit
CPU: Intel(R) Core(TM) i7-8550U
Memory: 16GB
Best regards.
Attachments:
Fri, 07/15/2022 - 15:56
shape2 is a compsolid and compsolids are not supported for boolean operations.
Users guide
Tue, 07/19/2022 - 11:44
Hello Thomas.
Thanks for the information.
I was able to get the cut shape by breaking down the Compound shape into Solid.