DiscussionsIssue archiveOther usage issues

Archived discussion

Trimming a surface with a wire

Other usage issuesFri, 07/29/2011 - 01:152 replies

Browse this forum
QuestionAuthor

I am building a surface from a wire using GeomPlate_BuildSurface. I add all the edges from the wire as curve constraints, and get back a bspline surface using GeomPlate_MakeApprox.

I now have a bspline which passes through the curves, but I need to trim the surface with the wire. Can I use BRepFeat_SplitShape for this? Are there any examples? My initial attempt to BRepFeat_SplitShape::Add(wire, face) resulted in a segfault...

Thanks...

Discussion

2 archived replies

Posts are displayed in their archived order.

01Commenter-1

What if you use BRepFill_Filling? That trims the surface to edges that are closed...
Is it possible to share the curves as an iges / step file?
Interesting, I've had to deal with this too [ in order to emulate what is called a network surface in rhino ]

02Author

Thanks! BRepFill_Filling works fine.