Is there a way to create a closed polysurface directly from a list of Breps, without doing any trimming or intersection calculations? I’m looking for an alternative to Brep.CreateSolid()
because my Breps are good “as is” and I don’t want to “waste” time recalculating the intersections.
I guess Brep.Join(list, tolerance)
should do the trick here, it is a static method that accepts a list of BReps and a join tolerance, much like the Join command would work in Rhino.
https://developer.rhino3d.com/api/rhinocommon/rhino.geometry.brep/joinbreps
Brep.Join
worked like a charm. Thank you very much!
1 Like