Advantages and Differences - Rhino.Python vs RhinoScript

Rhino.Python (Python Script) vs RhinoScript (VB Script)

Are there any differences between these two? Is there any advantage in using one over the other?

There are syntactical differences.
Other than that Python is multiplatform, whereas VBScript is more tightly interwoven with the Windows OS.
Python also seems to be way more popular nowadays and supported in many CAD and CG applications for scripting. The two only programms that support VBScript are Rhino and MS Excel. :wink:

Do you know if McNeel is phasing one out over the other at all in the foreseeable future?

No idea, but Python is here to stay, that’s for sure.

1 Like

Hello,

The first paragraph of this guide suggests that RhinoScript is not going away but the future of Rhino (like coding and scripting more generally) is definitely more pythonic.

1 Like

Hi Mike,

My advice would be to go for Python for sure!
One of the biggest advantages with the RhinoPython is that you can acces and use the RhinoCommon API

Note that all of rhinoscriptsyntax is build this way.

I’m not sure about your proficiency with coding, but what helped me a lot was to scrutinize the rhinoscriptsyntax code by means of breakpoints in the python editor.

See this post that might help follow my route:

Another extra: here on Discourse support for rhinopython is easier to get as my impression is that more (active) users use it.

-Willem

3 Likes

Great info from all. I moved forward with Python since it seems like it’s going to have more focus in Rhino in the future. Almost done with my first full script. Thanks all!

Go with python. We aren’t dropping support for RhinoScript, but we also aren’t putting a whole lot of effort into improvements either. Python will continue to see improvements from one version of Rhino to the next.

6 Likes

This is great feedback; good to know!