
Rhino3d Scripts
- 1 installs
- 37.5k repo stars
- Updated August 5, 2026
- github/awesome-copilot
rhino3d-scripts skill documents Authoring and debugging scripts for Rhinoceros 3D (Rhino 8 and later).
About
rhino3d-scripts skill documents Authoring and debugging scripts for Rhinoceros 3D (Rhino 8 and later). Use when asked to write RhinoScript (VBScript / .rvb / .vbs), RhinoPython, or RhinoCommon-based scripts; automate Rhino modeling tasks; build command macros; manipulate Rhino geometry, layers, blocks, or document objects; pick ob. name: rhino3d-scripts description: 'Authoring and debugging scripts for Rhinoceros 3D (Rhino 8 and later). Use when asked to write RhinoScript (VBScript / .rvb / .vbs), RhinoPython, or RhinoCommon-based scripts; automate Rhino modeling tasks; build command macros; manipulate Rhino geometry, layers, blocks, or document objects; pick objects from the viewport; control redraw and undo; or load and ru
- Authoring and debugging scripts for Rhinoceros 3D (Rhino 8 and later).
- Platform-specific setup patterns for rhino3d-scripts.
- Evidence-backed steps from upstream SKILL.md.
- When-to-use criteria for rhino3d-scripts versus alternatives.
Rhino3d Scripts by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,980 of 2,715 Automation & Workflows skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
rhino3d-scripts capabilities & compatibility
- Capabilities
- rhino3d scripts quick start · rhino3d scripts when to use guidance · rhino3d scripts integration patterns
What rhino3d-scripts says it does
Write production-quality scripts for Rhinoceros 3D. Covers the three scripting surfaces (RhinoScript/VBScript, RhinoPython, direct RhinoCommon .NET) and the Rhino 8+ Script Editor.
User asks to write, edit, or debug a `.rvb`, `.vbs`, or `.py` Rhino script
npx skills add https://github.com/github/awesome-copilot --skill rhino3d-scriptsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 37.5k |
| Last updated | August 5, 2026 |
| Repository | github/awesome-copilot ↗ |
How do I use rhino3d-scripts correctly?
Authoring and debugging scripts for Rhinoceros 3D (Rhino 8 and later). Use when asked to write RhinoScript (VBScript / .rvb / .vbs), RhinoPython, or RhinoCommon-based scripts; automate Rhino modeling
Who is it for?
Teams implementing rhino3d-scripts workflows from the catalog.
Skip if: Skip when requirements clearly match a different specialized stack.
When should I use this skill?
User asks about rhino3d-scripts, authoring and debugging scripts for rhinoceros 3d (rhino 8 and later). use when asked to w.
What you get
Working rhino3d-scripts setup with validated configuration and next steps.
Files
Rhino 3D Scripting Skill
Write production-quality scripts for Rhinoceros 3D. Covers the three scripting surfaces (RhinoScript/VBScript, RhinoPython, direct RhinoCommon .NET) and the Rhino 8+ Script Editor.
When to Use This Skill
- User asks to write, edit, or debug a
.rvb,.vbs, or.pyRhino script - User wants a Rhino command macro or wants to automate a sequence of Rhino commands
- User wants to manipulate geometry, layers, blocks, materials, viewports, or annotations from code
- User mentions
rhinoscriptsyntax,scriptcontext,RhinoCommon,Rhino.Geometry,RhinoDoc, or the Script Editor - User wants to pick objects, prompt for input, or build a small UI inside Rhino
- User asks how to load, run, or distribute a script (startup scripts, aliases, toolbar buttons)
Choosing a Scripting Surface
Pick the surface based on the task, not preference. Recommend Python by default for new work.
| Surface | When to choose | File ext |
|---|---|---|
RhinoPython (rhinoscriptsyntax + RhinoCommon) | Default for new scripts. Best ecosystem, readable, full RhinoCommon access. | .py |
| RhinoScript (VBScript) | Maintaining legacy .rvb/.vbs files; integrating with VBA/COM. | .rvb, .vbs |
| RhinoCommon (C#/.NET) via Script Editor | Performance-critical loops, complex geometry, leveraging .NET libraries. | .cs |
| Command macro | Pure sequence of existing Rhino commands; no logic. | toolbar/alias |
A macro is not a script — it is a string of command-line input (e.g. ! _-Line 0,0,0 10,0,0 _Enter). Use a script the moment you need a variable, loop, or conditional.
Prerequisites
- Rhino 7 or later (Rhino 8 strongly recommended — unified Script Editor supports Python 3, VB, and C# in one window).
- Script Editor: type
_ScriptEditor(Rhino 8) or_EditPythonScript/_EditScript(older). - Run a saved file from the command line with
_-RunPythonScriptor_LoadScript+_RunScript.
Core Patterns
Python: minimal scaffold
import rhinoscriptsyntax as rs
import scriptcontext as sc
import Rhino
def main():
obj_id = rs.GetObject("Select a curve", filter=rs.filter.curve, preselect=True)
if not obj_id:
return
length = rs.CurveLength(obj_id)
print("Length: {0:.4f}".format(length))
if __name__ == "__main__":
main()Python: working with RhinoCommon directly
import Rhino
import scriptcontext as sc
doc = sc.doc # Rhino.RhinoDoc.ActiveDoc
tol = doc.ModelAbsoluteTolerance
circle = Rhino.Geometry.Circle(Rhino.Geometry.Point3d(0, 0, 0), 5.0)
curve_id = doc.Objects.AddCircle(circle)
doc.Views.Redraw()VBScript: minimal scaffold
Option Explicit
Call Main()
Sub Main()
Dim strObject
strObject = Rhino.GetObject("Select a curve", 4) ' 4 = curve filter
If IsNull(strObject) Then Exit Sub
Rhino.Print "Length: " & Rhino.CurveLength(strObject)
End SubPicking objects with a custom filter (Python, RhinoCommon)
import Rhino
import scriptcontext as sc
go = Rhino.Input.Custom.GetObject()
go.SetCommandPrompt("Select breps")
go.GeometryFilter = Rhino.DocObjects.ObjectType.Brep
go.SubObjectSelect = False
go.GetMultiple(1, 0)
if go.CommandResult() != Rhino.Commands.Result.Success:
pass
else:
ids = [go.Object(i).ObjectId for i in range(go.ObjectCount)]Step-by-Step Workflows
Bulk-modify many objects fast
1. Disable redraw: rs.EnableRedraw(False). 2. Wrap mutations in a single undo record: undo = doc.BeginUndoRecord("My Op") … doc.EndUndoRecord(undo). 3. Use RhinoCommon directly inside the loop (skip rhinoscriptsyntax overhead). 4. Re-enable redraw and call doc.Views.Redraw() in a try/finally so a crash never leaves the viewport frozen.
Distribute a script to a teammate
1. Save the .py / .rvb somewhere on disk. 2. Add the folder to Options → Files → Search paths so Rhino can find it by name. 3. Create a toolbar button or alias whose macro is:
- Python:
! _-RunPythonScript "MyScript.py" - RhinoScript:
! _-LoadScript "MyScript.rvb" _-RunScript MySubName
4. The leading ! cancels any running command; - runs the command in script (no-dialog) mode.
Run code at Rhino startup
1. Place a .rvb/.py in a search path. 2. Tools → Options → RhinoScript (or Python) → add to Startup list. The file executes once per session.
Gotchas
- `rhinoscriptsyntax` returns GUIDs, RhinoCommon returns objects. Mixing them is fine, but
doc.Objects.Find(guid)is the bridge from ars.*id to aRhinoObject. - Coordinates differ by surface. Python uses
(x, y, z)tuples orRhino.Geometry.Point3d; VBScript uses 3-elementArray(x, y, z). Never pass a Python list to a VBScript helper through COM. - `Option Explicit` is off by default in VBScript. Typos silently create new variables. Always add
Option Explicitat the top of.rvbfiles. - VBScript has no block scope. All
Dims inside aSubare hoisted to the top of the procedure. Loop counters leak. - `Nothing`, `Empty`, and `Null` are different in VBScript. Use
IsNullforRhino.GetObjectfailure,IsEmptyfor uninitializedVariant,Is Nothingfor object refs. - Parentheses change calling semantics in VBScript.
Call Foo(a, b)andFoo a, bare valid;Foo(a, b)(noCall, with parens) is not a call to a Sub — it’s a syntax error for multi-arg subs and a forcedByValfor single-arg. - Tolerance is per-document. Always read
doc.ModelAbsoluteTolerancerather than hardcoding0.001; users work in mm, m, inches, etc. - Long loops should poll `Rhino.RhinoApp.EscapeKeyPressed` so the user can cancel. Otherwise Rhino appears frozen.
- GUID strings vs `System.Guid`.
rhinoscriptsyntaxaccepts either; RhinoCommon wantsSystem.Guid. Convert withSystem.Guid(str_id)if needed. - Don’t call `doc.Views.Redraw()` inside a tight loop. Toggle redraw once outside the loop.
- `.rvb` is just `.vbs` renamed with a Rhino-specific extension so Rhino’s
LoadScriptrecognizes it. Same VBScript engine. - `Rhino.RhinoApp.IsHeadless` may not exist on older Rhino 8 builds. Use
getattr(Rhino.RhinoApp, "IsHeadless", None)and check forNonebefore using. Fall back to a heuristic (e.g.sc.doc.Views.Count == 0) or assume GUI present. - `RhinoMath` is at `Rhino.RhinoMath`, not `Rhino.DocObjects.RhinoMath`. Accessing
Rhino.DocObjects.RhinoMathraisesAttributeError. - `doc.Objects.AddBrep()` returns `System.Guid.Empty` on failure. In Rhino 8 CPython the
Systemnamespace may not be directly importable; check the return value as a string:str(obj_id) == "00000000-0000-0000-0000-000000000000". - `rhinoscriptsyntax` has no type stubs. Static analysers (Pylance/Pyright) flag
import rhinoscriptsyntax as rsas unresolvable. Suppress with# type: ignoreon the import line; the module is always available at Rhino runtime. - Never name a script after a Python standard-library module (e.g.
random.py,math.py,os.py). IronPython 2.7 (_-RunPythonScript) resolves the script directory before stdlib, so anyimport randominside the stdlib (e.g.tempfileimportsrandominternally) will find your file instead and fail withCannot import name <X>. CPython 3 (rhinocode) is unaffected because it resolves stdlib first. Rename the script or avoid importing modules that pull in the shadowed name. - Em dashes and other non-ASCII characters silently break `_-RunPythonScript` (IronPython 2.7).
rhinocode scriptuses CPython 3 (UTF-8 by default) so the same file works there, making the failure non-obvious. IronPython 2.7 raisesSyntaxError: Non-ASCII character '\xe2'at the first offending byte. The most common culprit is the em dash (--auto-converted to--by many editors). Add# -*- coding: utf-8 -*-as line 1 of every script that must run under both runtimes, and replace typographic characters with ASCII equivalents: em dash--, arrow->, multiplicationx.
Troubleshooting
| Symptom | Fix |
|---|---|
rs.GetObject returns None immediately | The user pressed Escape, or your filter excludes everything. Re-check rs.filter.* flags. |
| “Unable to find script” when running by name | The folder isn’t in Options → Files → Search paths. |
VBScript Type mismatch on coordinates | You passed a 2-element array. Rhino requires 3-element Array(x, y, z). |
Python ImportError: No module named Rhino | You’re running CPython outside Rhino. RhinoCommon is only available in Rhino’s embedded Python (or via rhino3dm for read-only file work). |
| Created geometry doesn’t appear | You forgot doc.Views.Redraw(), or rs.EnableRedraw(False) was never re-enabled. |
| Undo undoes only the last object of a batch | Wrap the batch in BeginUndoRecord / EndUndoRecord. |
| Script works alone but fails as a startup script | Startup runs before any document is open — return early or skip document-dependent work when sc.doc is None. |
rs.Command("...") returns False | The macro string is malformed. Prefix with ! and -, end every prompt with _Enter or a value. |
AttributeError: type object 'RhinoApp' has no attribute 'IsHeadless' | Property added in a later Rhino 8 build. Use getattr(Rhino.RhinoApp, "IsHeadless", None) and guard against None. |
rhinocode script ignores arguments after the script path | rhinocode concatenates extra tokens onto the file URI. Pass data via a temp file or a Rhino dialog instead. See references/macros-and-loading.md. |
Cannot import name <X> inside stdlib (e.g. tempfile, os) when using _-RunPythonScript | Script filename shadows a stdlib module (e.g. random.py shadows random). IronPython 2.7 searches the script directory before stdlib. Rename the script, or remove the import that pulls in the shadowed module and replace it with a direct alternative (e.g. read %TEMP% via os.environ instead of import tempfile). |
SyntaxError: Non-ASCII character '\xe2' ... but no encoding declared | IronPython 2.7 (_-RunPythonScript) hit an em dash or similar character. Add # -*- coding: utf-8 -*- as line 1, or replace the character: em dash --, arrow ->. The same file runs fine under rhinocode (CPython 3), which hides the problem. |
References
- references/rhinoscriptsyntax-cheatsheet.md — most-used
rs.*functions by category. - references/rhinocommon-map.md — which namespace to import for which task.
- references/macros-and-loading.md — command-line macro syntax,
LoadScript/RunScript, search paths. - references/vbscript-quirks.md — VBScript-only traps relevant to RhinoScript.
Upstream docs
- RhinoScript landing: <https://docs.mcneel.com/rhino/8/help/en-us/information/rhinoscripting.htm>
- Developer hub: <https://developer.rhino3d.com/>
- RhinoCommon API index: <https://mcneel.github.io/rhinocommon-api-docs/api/RhinoCommon/html/R_Project_RhinoCommon.htm>
- Example scripts repo: <https://github.com/mcneel/rhino-developer-samples/tree/8/rhinoscript>
Macros, Loading, and Running Scripts
Command Macros (no script needed)
A macro is a string of command-line input. Anywhere Rhino accepts a command (alias, toolbar button, _ReadCommandFile), you can place a macro.
Syntax rules
| Token | Meaning |
|---|---|
! | Cancel any currently running command before this one starts. Always start macros with !. |
_ | Use the English (invariant) command name, so the macro works in any locale. |
- | Run the command in script mode — suppress dialogs, accept input from the macro string. |
_Enter | Press Enter at the current prompt. |
Pause | Stop and wait for the user to supply this input interactively. |
; | Comment to end of line. |
| Newline | Same as a space — a separator between tokens, not a command terminator. |
Example macros
! _-Line 0,0,0 10,0,0
! _-Circle 0,0,0 5 _Enter
! _SelAll _Delete
! _-Properties _Object _Name "MyObject" _EnterEnd _Enter
! _-RunPythonScript "MyScript.py"Running Saved Scripts
Python (.py)
_-RunPythonScript "C:\Users\example\Scripts\MyScript.py"Or, with the script folder on the search path:
_-RunPythonScript "MyScript.py"_EditPythonScript opens the legacy editor; _ScriptEditor (Rhino 8) opens the unified editor with Python 3, VB, and C#.
RhinoScript (.rvb, .vbs)
Two steps: load the file (registers its subs/functions), then run a named sub.
_-LoadScript "MyScript.rvb"
_-RunScript MyMainSubA single .rvb can hold many subs; _RunScript chooses which to invoke.
Search Paths
Options → Files → Search paths — folders listed here are scanned when you reference a script by bare filename. Without this, you must give a full path.
Startup Scripts
Options → RhinoScript → Startup (and Options → Python → Startup) — files in these lists run once when Rhino opens. Useful for registering custom commands or aliases.
Guard against missing document in startup code:
import scriptcontext as sc
def startup():
if sc.doc is None:
return
startup()Toolbar Buttons & Aliases
A toolbar button’s Command field is just a macro. To make a button that runs your script:
! _-RunPythonScript "MyScript.py"Set the Tooltip to a short description; set the icon via the button editor.
To create an alias: Options → Aliases → New. The alias name becomes a typed command; its value is the macro.
Invoking Macros From a Script
import rhinoscriptsyntax as rs
rs.Command("! _-Line 0,0,0 10,0,0", echo=False)echo=False suppresses command-history output but does not suppress prompts — always use - and complete every prompt within the macro string.
rhinocode CLI (Rhino 8)
rhinocode is the Rhino 8 command-line tool for running scripts and commands against a running Rhino instance from an external terminal.
Basic commands
rhinocode script "C:\path\to\MyScript.py" # run a Python script
rhinocode command "_Circle 0,0,0 5 _Enter" # run a Rhino command
rhinocode --rhino <instance-id> script "MyScript.py" # target a specific instance<instance-id> looks like rhinocode_remotepipe_75029. Find the ID in Rhino's title bar or by running StartScriptServer in Rhino, which prints the pipe name to the command line.
Architecture — pipe server
rhinocode does not spawn a new Rhino process. It connects to a persistent server that Rhino exposes (StartScriptServer). Scripts execute inside that server process, which means:
- Environment variables are isolated. Variables set in the calling shell (
set FOO=bar)
are NOT visible inside the script via os.environ. The server was started before your shell.
- `os.getcwd()` is the server's working directory, not the directory you called rhinocode
from. Do not rely on it for output paths; pass the path explicitly.
- `print()` output IS piped back to the calling terminal — use it freely for status messages.
Passing data into a script
rhinocode does not support positional arguments after the script path — any extra tokens are concatenated onto the file URI, causing a "file does not exist" error. Workarounds:
| Channel | How | Notes |
|---|---|---|
| Temp file | Caller writes a file to a known location; script reads and deletes it. | Use a path derived from __file__ (see below), not %TEMP% — the server may resolve a different temp dir. |
| Rhino dialog | Script calls rhinoscriptsyntax.ListBox / GetString | Always works; user sees a prompt in Rhino. |
__file__ is a URI
When running via rhinocode, __file__ is set as a file:/// URI with URL-encoded characters (spaces become %20). Decode it before using it as a filesystem path:
import os, sys, urllib.parse
def _script_dir():
raw = __file__
if raw.startswith("file:///"):
raw = urllib.parse.unquote(raw[len("file:///"):])
if sys.platform == "win32":
raw = raw.replace("/", os.sep)
return os.path.dirname(os.path.abspath(raw))RhinoCommon Namespace Map
Use this to decide which Rhino.* namespace to import for a task. All of these are accessible from Python with import Rhino.
Document & Object Model
| Need | Namespace | Key types |
|---|---|---|
| The active document, units, tolerances, undo | Rhino | RhinoDoc, RhinoApp |
| Reading/writing objects in the doc | Rhino.DocObjects | RhinoObject, ObjectAttributes, Layer, ObjectType |
| Tables (layers, materials, blocks, dim styles) | Rhino.DocObjects.Tables | LayerTable, InstanceDefinitionTable, MaterialTable |
| Custom per-object user data | Rhino.DocObjects.Custom | UserData |
| File I/O (.3dm, import/export) | Rhino.FileIO | File3dm, File3dmObject |
Geometry
| Need | Namespace | Key types |
|---|---|---|
| Points, vectors, transforms | Rhino.Geometry | Point3d, Vector3d, Transform, Plane, BoundingBox |
| Curves | Rhino.Geometry | Curve, NurbsCurve, PolylineCurve, LineCurve, ArcCurve |
| Surfaces & breps | Rhino.Geometry | Surface, NurbsSurface, Brep, BrepFace, Extrusion |
| Meshes | Rhino.Geometry | Mesh, MeshFace, MeshNgon |
| SubD | Rhino.Geometry | SubD, SubDFace, SubDEdge |
| Geometry collections (vertices, edges, faces lists) | Rhino.Geometry.Collections | MeshVertexList, BrepEdgeList |
| Intersections | Rhino.Geometry.Intersect | Intersection, CurveIntersections |
| Mesh refinement | Rhino.Geometry.MeshRefinements | |
| Space morphs (bend, twist, etc.) | Rhino.Geometry.Morphs | BendSpaceMorph, TwistSpaceMorph |
User Interaction
| Need | Namespace | Key types |
|---|---|---|
| Prompts, getters, command results | Rhino.Input / Rhino.Input.Custom | RhinoGet, GetObject, GetPoint, GetOption |
| Commands (when building a plugin) | Rhino.Commands | Command, Result |
| Forms, dialogs, panels | Rhino.UI | Dialog, Panels, RhinoEtoExtensions |
| UI controls / data sources | Rhino.UI.Controls | |
| Gumball | Rhino.UI.Gumball |
Display & Rendering
| Need | Namespace | Key types |
|---|---|---|
| Viewports, display conduits, draw overlays | Rhino.Display | DisplayPipeline, DisplayConduit, RhinoViewport |
| Render content (materials, environments) | Rhino.Render | RenderContent, RenderMaterial, RenderTexture |
| Render mesh customization | Rhino.Render.CustomRenderMeshes | |
| Post effects | Rhino.Render.PostEffects |
Runtime & Plugins
| Need | Namespace | Key types |
|---|---|---|
| Plugin lifecycle, settings | Rhino.PlugIns | PlugIn, FileImportPlugIn, FileExportPlugIn |
| In-process Rhino (run Rhino from external .NET) | Rhino.Runtime.InProcess | RhinoCore |
| Native interop (pointers, marshalling) | Rhino.Runtime.InteropWrappers | |
| User notifications (toasts) | Rhino.Runtime.Notifications |
Common Patterns
import Rhino
import scriptcontext as sc
import System.Drawing
doc = sc.doc # Rhino.RhinoDoc
tol = doc.ModelAbsoluteTolerance # float
view = doc.Views.ActiveView # Rhino.Display.RhinoView
layer_index = doc.Layers.Add("MyLayer", System.Drawing.Color.Red)
# Find a Rhino object from a rhinoscriptsyntax GUID
rhobj = doc.Objects.Find(guid) # Rhino.DocObjects.RhinoObject
geom = rhobj.Geometry # Rhino.Geometry.GeometryBase
# Add geometry with attributes
attrs = Rhino.DocObjects.ObjectAttributes()
attrs.LayerIndex = layer_index
attrs.Name = "example"
new_id = doc.Objects.AddCurve(curve, attrs)Undo
undo_serial = doc.BeginUndoRecord("Batch Op")
try:
# ... many doc.Objects.* calls ...
pass
finally:
doc.EndUndoRecord(undo_serial)
doc.Views.Redraw()rhinoscriptsyntax Cheatsheet
import rhinoscriptsyntax as rsUser Input
| Function | Returns |
|---|---|
rs.GetObject(message, filter, preselect, select) | GUID or None |
rs.GetObjects(message, filter) | list of GUIDs |
rs.GetPoint(message, base_point) | Point3d or None |
rs.GetString(message, default, strings) | str |
rs.GetInteger, rs.GetReal | int / float |
rs.GetBoolean(message, items, defaults) | list of bools |
Common rs.filter.* flags (OR them together):
point=1, point_cloud=2, curve=4, surface=8, polysurface=16,
mesh=32, light=256, annotation=512, instance_reference=4096,
text_dot=8192, grip=16384, detail=32768, hatch=65536,
morph_control=131072, sub_d=262144Creating Geometry
| Function | Notes |
|---|---|
rs.AddPoint(point) | |
rs.AddLine(start, end) | |
rs.AddPolyline(points) | points is a list of 3-tuples |
rs.AddCircle(plane_or_center, radius) | |
rs.AddArc(plane, radius, angle_deg) | angle in degrees |
rs.AddCurve(points, degree=3) | NURBS through control points |
rs.AddInterpCurve(points, degree=3) | NURBS through points |
rs.AddSphere(center, radius) | |
rs.AddBox(corners) | corners = 8 points |
rs.AddPlanarSrf(curves) | returns list |
rs.AddLoftSrf(curves, ...) | returns list of GUIDs |
rs.AddExtrusion(profile, path) / rs.ExtrudeCurveStraight |
Object Properties
| Function | Purpose |
|---|---|
rs.ObjectLayer(id [, layer]) | get/set |
rs.ObjectColor(id [, color]) | RGB tuple |
rs.ObjectName(id [, name]) | |
rs.ObjectType(id) | int matching rs.filter.* |
rs.IsCurve / IsSurface / IsBrep / IsMesh / IsPoint(id) | |
rs.DeleteObject(id) / rs.DeleteObjects(ids) | |
rs.CopyObject(id, translation) | |
rs.MoveObject(id, translation) | |
rs.RotateObject(id, center, angle, axis=None, copy=False) | angle in degrees |
rs.ScaleObject(id, origin, scale) | scale is a 3-tuple |
Curves
| Function | |
|---|---|
rs.CurveLength(id) | |
rs.CurveDomain(id) | (t0, t1) |
rs.EvaluateCurve(id, t) | Point3d |
rs.CurveStartPoint / CurveEndPoint(id) | |
rs.CurveClosestPoint(id, point) | parameter t |
rs.DivideCurve(id, segments, create_points=False, return_points=True) | |
rs.IsCurveClosed / IsCurvePlanar(id) |
Layers
| Function | |
|---|---|
rs.AddLayer(name, color=None, visible=True, locked=False, parent=None) | |
rs.CurrentLayer([layer]) | |
rs.LayerNames() | list |
rs.LayerVisible(name [, visible]) | |
rs.DeleteLayer(name) | |
rs.ObjectsByLayer(name) | list of GUIDs |
Document & View
| Function | |
|---|---|
rs.UnitAbsoluteTolerance() | |
rs.UnitSystem() | int (rs.unit_system_*) |
rs.EnableRedraw(enable) | toggle this around bulk ops |
rs.Redraw() | force one redraw |
rs.ViewNames() / rs.CurrentView([name]) | |
rs.ZoomExtents(view=None, all=False) |
Selection
| Function | |
|---|---|
rs.SelectedObjects() | list |
rs.SelectObject(id) / rs.SelectObjects(ids) | |
rs.UnselectAllObjects() | |
rs.InvertSelectedObjects() |
Macros from Script
rs.Command(command_string, echo=True) runs a macro exactly as if typed at the command line. Always prefix ! (cancel) and - (no dialog):
rs.Command("! _-Line 0,0,0 10,0,0", echo=False)VBScript Quirks for RhinoScript
Things that bite when writing .rvb / .vbs files and aren’t obvious to anyone whose mental model is C-family or Python.
Always Start With Option Explicit
Without it, mistyping a variable name silently creates a new Variant set to Empty. Every .rvb file should begin:
Option ExplicitNo Block Scope
All Dim declarations inside a Sub/Function are hoisted to the top. A Dim inside an If block is visible after the If ends. Loop counters survive the loop.
Nothing vs Empty vs Null
| Sentinel | Test with | Meaning |
|---|---|---|
Empty | IsEmpty(x) | Dim’d but never assigned |
Null | IsNull(x) | Explicit “no value” — what Rhino.GetObject returns on cancel |
Nothing | x Is Nothing | An object reference that points to nothing — only for Set variables |
Wrong sentinel → silently false.
Parentheses Change Semantics
Foo a, b ' Call a Sub or Function (return value discarded)
Call Foo(a, b) ' Call a Sub or Function (return value discarded)
x = Foo(a, b) ' Call a Function and capture the return
Foo(a, b) ' SYNTAX ERROR for multi-arg subs
Foo(x) ' Calls Foo passing x BY VALUE, even if Foo declares ByRef
Foo x ' Honors Foo's ByRef declarationIf a Sub modifies its argument and your change isn’t taking effect — you wrapped the argument in parentheses.
ByRef Is the Default
Unlike most languages, VBScript passes arguments by reference by default. Functions can mutate their callers’ variables. Be explicit:
Sub Increment(ByRef n)
n = n + 1
End SubArrays Are 0-Based But Have UBound, Not Length
Dim arr(2) ' Three elements: arr(0), arr(1), arr(2)
For i = 0 To UBound(arr)
arr(i) = i * 10
NextDim arr(n) creates n+1 elements. ReDim Preserve arr(newSize) resizes (only the last dimension of a multi-dim array).
Set Is Required for Object Assignment
Set fso = CreateObject("Scripting.FileSystemObject") ' correct
fso = CreateObject("Scripting.FileSystemObject") ' RUNTIME ERRORAny time the right-hand side is an object (COM object, RegExp, Dictionary), you must use Set.
Error Handling Is Manual
On Error Resume Next
Rhino.AddCircle Array(0,0,0), -1
If Err.Number <> 0 Then
Rhino.Print "Failed: " & Err.Description
Err.Clear
End If
On Error GoTo 0 ' Restore normal error behaviorOn Error Resume Next suppresses all errors until On Error GoTo 0. Forgetting to restore is a common bug.
Points Are 3-Element Arrays
Rhino expects Array(x, y, z). A 2-element array (Array(x, y)) raises a type-mismatch error.
Dim pt
pt = Array(1.0, 2.0, 3.0)
Rhino.AddPoint ptString Concatenation Uses &, Not +
+ on strings works only if both sides are strings. If one side is a number, + does numeric addition and throws a type-mismatch. Always use &:
Rhino.Print "Count: " & nFor Each Needs a Variant
Dim item
For Each item In someCollection
' ...
NextThe loop variable must be Variant. You cannot Dim item As Long (VBScript has no typed Dim).
Related skills
FAQ
What does rhino3d-scripts do?
rhino3d-scripts skill documents Authoring and debugging scripts for Rhinoceros 3D (Rhino 8 and later).
When should I use rhino3d-scripts?
User asks about rhino3d-scripts, authoring and debugging scripts for rhinoceros 3d (rhino 8 and later). use when asked to w.
Is this skill safe to install?
Review the Security Audits panel on this page before installing in production.