Forum archiveIssue archiveOther usage issues

Archived discussion

Big mesh and opencascade

Other usage issuesThu, 10/15/2009 - 15:281 reply

Browse this forum
QuestionAuthor

Hi,
I am working on a new project.
The input datas are quite big, stl (ascii) files around 10MB, like bones.

I want to use fusion with fillet (prothesis application).

But it seems for the fusion (like in mfc sample "TopologyOperations"), that the input algorithm are only parametric surfaces.

Perhaps opencascade are not the best way for that?
Have you any sugestion?

Discussion

1 archived reply

Posts are displayed in their archived order.

01Commenter-1

Hi Author,

In OpenCASCADE, boolean operations (section, cut, common, fuse) are performed over TopoDS_Shapes with classes available from the BRepAlgoAPI package. You can use the StlAPI package to open/parse/convert the STL file to a TopoDS_Shape, and then perform any available boolean operation. I don't see any problem a priori (I never tested boolean ops with STL files), but you might face topological issues (due to the poor topological quality coming from the triangle based description of STL).

Regards,

Commenter-1