How to Unjoin Brep Edges in Rhino SDK using C/C++

Hi,
I found there is a command called UnjoinEdge in Rhino5.
and I would like to achieve the same result in my C++ program.


Is there a method to unjoin Brep edges in RhinoCommon SDK for C++?
Can someone post a simple example to show how to do it?
Thanks~~~!

Hi @tempoboy8421,

Use RhinoUnjoinEdges. See rhinoSdkUtilities.h for details.

– Dale

Hi @dale
I know there is a “RhinoUnJoinEdges” in rhinoSdkUtilities.h.
However, it is in Rhino C++ API 6.6.
And I couldn’t find “RhinoUnJoinEdges” in my Rhino C++ API for my Rhino5.
Could I install Rhino C++ SDK 6.0 for my Rhino5?
Here is my rhinoSdkUtilities.h in Rhino C++ SDK 5.0 rhinoSdkUtilities.rar (34.7 KB)

Hi @tempoboy8421,

The Rhino 5 C++ SDK does not included the RhinoUnjoinEdges function - sorry.

Sorry, no.

– Dale

Ok, I see.:sob:
Or, maybe you can give me some idea to implement this method in C++.
Thanks!!!