Wondering what the total number of commands are in Rhino 8.0
vs Rhino 1.0
Here is a list about how many new commands in Rhino 8
I get 1108 when I run this C# script in Rhino 8
// #! csharp
using Rhino;
var names = Rhino.Commands.Command.GetCommandNames(true, false);
RhinoApp.WriteLine($"Command count {names.Length}");
Note: I have a few plug-ins installed so that number is off from what you get out of the box
2 Likes
Try _CommandList
.
Good tip- saved out as text file and the command count is 1101
in base Rhino V8.
Thanks, between your answer and "AMG tip discovered its 1101 commands