Forum archiveIssue archiveModeling Data and Algorithms

Archived discussion

BRepAlgoAPI_Fuse SimplifyResult() for BRepPrimAPI_MakePrism without fuse

Modeling Data and AlgorithmsTue, 04/25/2023 - 19:052 replies

Browse this forum
QuestionAuthor

Hi guys! Is any method to make "optimize" prizm solid from BRepPrimAPI_MakePrism like it makes BRepAlgoAPI_Fuse::SimplifyResult?
I need to merge collinear wires segments to avoid face separation.
Now i do twice "extrude" of prizm by BRepPrimAPI_MakePrism and after - fuse it and after - SimplifyResult(), but this is wrong way of course :)

What is the correct way to remove extra edges on faces after extrusion by BRepPrimAPI_MakePrism?

Discussion

2 archived replies

Posts are displayed in their archived order.

01Commenter-1

Hi,
Use the class ShapeUpgrade_UnifySameDomain.

02Author

ohh danke :)