MeshRefinement Namespace

Hello All,

A RhinoCommon Noob Here, Python is my native tongue for this one.

I’m trying to call the method Rhino.Geometry.MeshRefinement.CreaseEdges.

All I want is to replicate the _Crease command in Grasshopper by assigning the method to an input mesh.

Hi @tay.othman,

On a mesh, the Crease command creates a crease by “unwelding” the edge, which means duplicating vertices on both ends to obtain two parallel edges.

This is available in RhinoCommon as Rhino.Geometry.Mesh.UnweldEdge.

The MeshRefinement class is used for subdividing meshes with various rules, and will not do the same as the Crease command.

–Pierre

1 Like

Thank you, @pierrec
This makes sense to me, thank you for pointing me to the right direction, trying to learn something everyday.