Where can I find description for all rhinoscript functions and methods?
I looked into RhinoScriptSyntax Help page:
https://developer.rhino3d.com/api/RhinoScriptSyntax/
But couldnt find description for “rs.frange”, for example.
Where can I find description for all rhinoscript functions and methods?
I looked into RhinoScriptSyntax Help page:
https://developer.rhino3d.com/api/RhinoScriptSyntax/
But couldnt find description for “rs.frange”, for example.
If you type the command in the pythonscripteditor you will get some information showing up in the status bar below:
Hi,
You can also use
import inspect
inspect.getsource(rs.frange)