
Fri, 02/25/2022 - 15:11
Forums:
Hello,
I created a screw-shell using BRepOffsetAPI_ThruSections with several rotated faces as sections. This worked out fine apart from the long time it takes to compute. However, as a result I do not get a single shell surface, but a compound of several faces (see attached image).
What function can I use to merge these to a single (sur)face?
From what I found in OCCT Documentation, there are two optinons:
1) ShapeUpgrade_UnifySameDomain Class and
2) TopExp_Explorer to get the faces from the shell that results from BRepOffsetAPI_ThruSections combined with BRepAlgoAPI_Fuse to fuse the faces
What is the right way to do this?
Thanks in advance for your help!
Fri, 02/25/2022 - 15:39
There are algorithms like GeomPlate and SSP (Surfaces from Scattered Points) which are usually used to approximate a new smoothly connected surface out of several surfaces. But maybe there are some simpler solutions for your specific case, just sharing.