
Fri, 05/31/2013 - 07:45
Forums:
Hi friends.
I am building a c++ program which reads an iges files and outputs all the points corresponding to each face in UV coordinates. I am able to get all the faces and the surfaces corresponding to each face. Can you please tell me how to get the boundary curve(loop) of face and also how to get any other inner curve(if present) on the surface. Thanks a lot.
Samyak
Fri, 05/31/2013 - 15:37
Hey,
take a look at BRepTools::OuterWire(face) for the boundary curve. Also ShapeAnalysis_FreeBounds might be helpful to do the job!
Alex
Wed, 06/05/2013 - 11:30
Thanks a lot for your help Alex.