Accessing the Bevel command in a script

Hi @puya.kalili , I’m sorry you had to wait for my reply for so long. Bevel command was indeed added as part of the SubD toolset in Rhino 7. And that functionality is neither in the C++ SDK nor RhinoCommon. There are already YT items for these missing interfaces:

  • RH-58668 Expose SubD Bevel to RhinoCommon
  • RH-56362 Bevel: expose core functionality in SDK

@rajaa Bevel command is in the Rhino core written in C++. I don’t see any reason why it could not be called from RhinoScript. As an example when edges are pre-selected:
Rhino.Command "_Bevel _Segments=3 _OffsetMode=_Proportional 1"
For post-selection of edges:
Rhino.Command "_Bevel _Pause _Segments=3 _OffsetMode=_Proportional 1"

2 Likes