Documentation RSS Feed


    For quick links to functional references in RhinoPython:

    • Python Docs
    • Rhino Specific Modules
      • rhinoscriptsyntax Functions in RhinoPython - The main module of Rhino for Python. Requires rhinoscriptsyntax namespace in header.
      • scriptcontext module - specific utilities to the Rhino.python engine. Requires scriptcontext in the header.
        • scriptcontext.doc - a multi-platform safe way to address the current document in rhino. Inherits all the functions from RhinoDoc in the SDK.
        • scriptcontext.sticky - The scriptcontext module contains a standard python dictionary called sticky which "sticks" around during the running of Rhino. This dictionary can be used to save settings between execution of your scripts and then get at those saved settings the next time you run your script -OR- from a completely different script. Has all the member functions of a dict.
      • RhinoCommon SDK documentation - The .NET SDK compatible module. Allows direct calls into the Rhino SDK. Requires rhino in the header.