Convert mesh with NGons to Brep

Hi,

Is there a Rhino command that converts mesh with ngons to a brep?
Or can I extract outline from with ngon as a rhino command?

I have a following case:


meshngon.3dm (315.5 KB)

Hello- try:

Explode

DupBorder
SimplifyCrv on the results - still selected
PlanarSrf

Join the resulting faces.

-Pascal

1 Like

Another solution much slower than what @pascal recommend:
ToNNURBS
MergeAllCoplanarFaces

1 Like

Hello, you can do the same in Rhino 8
With the MeshToNURB command!!!UseNgons=Yes

1 Like

Yep, a good one too - the downside there is that the face edges are split up where the internal ngon polygon edges are. Not the end of the world but something to be aware of.

image

-Pascal

3 Likes

Thank you all, works like a charm;)

I use this macro for now:
_Explode
_MultiPause
_SelLast
_DupBorder
_MultiPause
_SelLast
_SimplifyCrv
_MultiPause
_SelLast
_PlanarSrf
_MultiPause
_SelLast
_Join

1 Like

Try without the MultiPause entries - I am not sure what those are doing.

-Pascal

Thanks this seems to work. What does the exclamation mark do in macros?
And is there any way to export or save a custom bar with these four buttons?

!
_Select
_Pause
_AddNgonsToMesh
_SelLast
_Explode
_SelLast
_DupBorder
_SelPrev
_Delete
_SelLast
_SimplifyCrv
_SelLast
_PlanarSrf
_SelPrev
_Delete
_SelLast
_Join

1 Like