DiscussionsIssue archiveOther usage issues

Archived discussion

Get Seam Edge

Other usage issuesFri, 04/01/2011 - 10:391 reply

Browse this forum
QuestionAuthor

I a beginner in OpenCascade.
I have a pipe with two end faces without seam edge causing problem in my program. I used ShapeFix_face but in vain. I want to get a method to check whether a face has a seam edge or not? Can you help me.

pls reply me to [email removed]

Discussion

1 archived reply

Posts are displayed in their archived order.

01Commenter-1

Hi Author,

To check whether a face contains a seamed edge, you can use API BRep_Tool::IsClosed(edge, face). That means if one edge has two pcuves in same face, that's a seamed edge. If you think the face should contain seamed edge but it's not, you can use stitch method to fix this problem. Stitch API is BRepOffsetAPI_Sewing.

Ding