Hi I’m using ghPython node and Rhino.Geometry.Brep.MergeSurface to merge to surfaces but the returned surface is bigger than the individual surfaces I feed to the script, I played with the tolerance but nothing changed.
mergeFace.gh (96.9 KB)
1 Like
Hi @ashkan.rdn,
One or both of the faces you’re trying to merge surfaces with is trimmed. Keep in mind that Brep.MergeSurfaces merges surfaces and not Brep faces.
A better a approach might be to duplicate each fac using BrepFace.DuplicateFace and then joining the resulting Breps using Brep.JoinBreps.
Another approach might be to merge faces using Brep.MergeCoplanarFaces.
– Dale
2 Likes