RhinoDeveloper
design, model, present, analyze, realize...
Guides Samples API Videos Community my account user avatar sign in

Section:

  • Authors
  • Guides
  • API References
  • Samples
  • Videos

Categories:

  • Adding-Objects
  • Advanced
  • Analysis
  • Basic
  • Blocks
  • Caffeine
  • Client
  • CloudZoo
  • CloudZooDoc
  • Csharp-Essentials
  • Curves
  • Databases
  • Deployment
  • Deprecated
  • Development
  • Draw
  • Essential-Mathematics
  • Essentials-Algorithms-and-Data-Structures
  • Eto
  • Features
  • Flamingo
  • Fundamentals
  • General
  • Getting-Started
  • GhPython
  • Hops
  • How-To
  • In-Depth
  • Intermediate
  • Interoperability
  • Layers
  • Macros
  • Miscellaneous
  • NURBS
  • Other
  • Overview
  • Picking-and-Selection
  • Python-Windows
  • Python-in-Rhino
  • RDK
  • Rendering
  • Rhino.Python-101
  • RhinoAccounts
  • RhinoScript-101
  • Scripting
  • Scripts
  • Surfaces
  • Tasks
  • Text
  • This-Site
  • Troubleshooting
  • Unsorted
  • Viewports-and-Views
  • Zoo
  • intermediate
  • python-scripting

Levels:

Platforms:

Tags:

Tasks:

Versions:

Edit on GitHub
History
Admin
Add a Brep Box

Demonstrates how to add a Brep Box from a Rhino C++ plugin.

Add a Cone Surface

Demonstrates how to create a cone using ON_BrepCone.

Add a Cylinder

Demonstrates how to create a cylinder using ON_BrepCylinder and add it to …

Add a Line Curve Object

Demonstrates how to add a line curve.

Add a Linear Dimension

Demonstrates how to add a linear dimension object.

Add a New Layer

Demonstrates how to add a new layer to Rhino.

Add a NURBS Circle

Demonstrates how to use ON_NurbsCurve to create a circle.

Add Annotation Text

Demonstrates how to add annotation text to a Rhino model at a specific …

Add Arrowheads to Curves

Demonstrates how arrowheads can be added to any curve object my modifying …

Add Arrowheads to Curves

Demonstrates how to decorate curves in a Rhino model with arrowheads.

Add Background Bitmap

Demonstrates how to add a background bitmap to a Rhino model at a …

Add Background Bitmaps to Viewports

Demonstrates how to add a background bitmap to a viewport.

Add Brep Box

Demonstrates how to add a Brep Box to a Rhino model by specifying two …

Add Child Layer

Demonstrates how to add a child (or sub) layer to a parent layer in a Rhino …

Add Circle

Demonstrates how to add a circle from a center point and radius.

Add Clipping Plane

Demonstrates how to add a clipping plane from an array or corner points.

Add Clipping Planes

Demonstrates how to add a viewport clipping plane object.

Add Command Line Options

Demonstrates how to add command-line options as inputs to your command.

Add Cone

Demonstrates how to construct a cone using a plane, height, and radius.

Add Cylinder

Demonstrates how to construct a cylinder using a center-point, height and …

Add Layer

Demonstrates how to add a layer to a Rhino model and validate that it does …

Add Layout

Demonstrates how to generate a layout with a single detail view that zooms …

Add Line

Demonstrates how to construct a line from two points.

Add Linear Dimension

Demonstrates how to add a linear dimension to a Rhino model.

Add Linear Dimension2

Demonstrates how to add a linear dimension from two points given an offset …

Add Material

Demonstrates how to add a material to the document and apply it to a sphere …

Add Mesh

Demonstrates how to construct a mesh from a list of vertices and faces.

Add Mesh Box

Demonstrates how to construct a mesh box from a Brep box.

Add Named View

Demonstrates how to add a named view to a Rhino model from a user-specified …

Add Nested Block

Demonstrates how to add a nested block to an instance definition.

Add NURBS Circle

Demonstrates how to create a NURBS circle from scratch using points and …

Add NURBS Curve

Demonstrates how to add a NURBS curve to Rhino.

Add NURBS Curve

Demonstrates how to create a NURBS curve from a list of points.

Add NURBS Curve

Demonstrates how to add a NURBS curve to Rhino using RhinoScript.

Add Objects to a Group

Demonstrates how to add selected objects to an object group.

Add Objects to Group

Demonstrates how to group objects from a user-specified selection set of …

Add Points at Curve Endpoints

Demonstrates how to add point at the starting and ending locations of …

Add Sphere

Demonstrates how to create a sphere from a center point and radius.

Add Spherical Surface

Demonstrates how to create a sphere using ON_RevSurface and add it to …

Add Text

Demonstrates how to use ON_TextEntity2 to add text to Rhino.

Add Texture

Demonstrates how to add a texture to an object from a user-specified bitmap …

Add Torus

Demonstrates how to create a torus using ON_BrepTorus and add it to Rhino.

Add Torus

Demonstrates how to construct a torus from a set of radii and a plane.

Add Truncated Cone

Demonstrates how to create a truncated cone ON_BrepRevSurface and add it to …

Add Truncated Cone

Demonstrates how to construct a truncated cone (TCone) from two circles.

Add Twisted Cube

Demonstrates how to construct a twisted cube object from an array of points …

Array Points on Surface

Demonstrates how to array points on a surface with a RhinoScript.

Auto Label Objects

Demonstrates how to automatically label objects using RhinoScript.

Convert Dots to Text

Illustrates RhinoScript code that converts annotation dots to text object.

Copy Groups

Demonstrates how to duplicate objects with grouping.

Create a NURBS Circle

Demonstrates how to use ON_NurbsCurve to create a circle.

Create an Ellipsoid Parametrically

Demonstrates one way of creating a Ellipsoid using RhinoScript.

Create an Icosahedron

Demonstrates one way of creating a Icosahedron in RhinoScript.

Create Block Definition

Demonstrates how to create a block definition from scratch from …

Create Box Frames

Demonstrates how to create a box frame with RhinoScript.

Create Center Point on Closed Curve

Demonstrates how to mark the center points of closed planar curves with a …

Create Contour Curves

Demonstrates how to create contour curves through surfaces, breps, and …

Create New View

Demonstrates how to create a new view that has the properties of an …

Create NURBS Surface

Demonstrates how to create a NURBS surface.

Create Plane Surface

Demonstrates how to create a plane surface.

Create Square Pipes

Demonstrates how to create square pipes using RhinoScript.

Create Surface from Edge Curves

Demonstrates how to create a surface object from four edge curves.

Creating NURBS Cage Objects

Demonstrates how to create a NURBS Cage objects.

Determine Object Layer

Demonstrates how to determine which layer a user-specified object is on and …

Drawing Steel Shapes

Demonstrates how to draw steel shapes using RhinoScript.

Duplicate Object

Demonstrates how to make a copy of a CRhinoObject-derived object.

Duplicate Object

Demonstrates how to clone (or copy, or duplicate) a Rhino object.

Extend Curve

Demonstrates how to extend a curve object to user-selected boundary …

Fibonacci Spirals

Demonstrates how to create a Fibonacci Spiral with RhinoScript.

Fillet Curve

Demonstrates how to create a fillet between two curves.

Find Objects by Name

Demonstrates how to find objects by their name or label.

Get Object UUID

Demonstrates how to get the UUID (sometimes called GUID) of a Rhino object.

Hello Python

Demonstrates Basic syntax for writing python scripts.

Mark Points on a Line

Demonstrates how to mark points on a line using RhinoScript.

Modify an Object's Name

Demonstrates how to modify an object's user-defined name.

Modify Object Color

Demonstrates how to modify the color of a user-specified object.

Move Grip Objects

Demonstrates how to move grip objects on a selected surface.

Move Objects to Current Layer

Demonstrates how to move object to the currently active layer.

Multiple Pipe

Demonstrates how to Pipe on multiple curves at a time using RhinoScript.

Object Color

Demonstrates how to set the color of user-specified objects.

Object Display Mode

Demonstrates how to set the object display mode of a user-specified mesh or …

Pick Point

Demonstrates how to pick and select a point object.

Platonic and Archimedean Solids

Demonstrates how to generate platonic and archimedean solids with …

Polar Arrays

Demonstrates how to create polar arrays of objects using RhinoScript.

Pre and Post-Pick Objects

Demonstrates how to customize Rhino's pre and post picking of objects …

Random Surface Points

Generate random points on a surface using RhinoScript.

Rename Object

Demonstrates how to rename a user-specified object.

Replace Hatch Pattern

Demonstrates how to replace an object's hatch pattern.

Revolve Profile Curves

Demonstrates how to create a surface by revolving one or more profile …

Select Objects in Object Groups

Demonstrates how to select objects that are an object group.

Select Objects on Layer

Demonstrates how to select all the objects on a user-specified layer.

Surface from Control Points

Demonstrates how to create a surface from a grid of control points.

User Data

RhinoCommon object plugin user data

Zoom to Object

Zoom to a Selected Object

Array Points on Surface

Demonstrates how to array points on a surface using Python.

Circle From Length

Demonstrates how to add a circle based on its circumference using Python.

Copy Objects to Layer

Demonstrates how to copy objects to layer based on Python.

Get Current Model Information

Demonstrates how to get current model information through Python.

Get Curve Length

Demonstrates how to get curve length through Python.

Draw a Parametric Curve

Demonstrates how to draw a parametric curve Python.

Export Control Points

Demonstrates how to export control points with Python.

Garden Path Sample

Demonstrates basic syntax for writing python scripts.

Export Points

Demonstrates how to export points with Python.

Annotate Curve Endpoints

Demonstrates how to add a NURBS curve to Rhino using Python.

Import Points

Demonstrates importing points from a file into Rhino using Python.

Annotate Curve Form

The following sample shows how to create a custom Windows form.

Sticky Values

This module contains a standard python dictionary called sticky which …

Custom Getpoint

A Rhino GetPoint that performs some custom dynamic drawing.

Make a Circle with RhinoCommon

This sample creates a circle without using functions in the rhinoscript …

Find a Reseller
Shop online or find a Reseller
Find a Reseller
Privacy Policy • About • Contact Us • Language
Copyright © 1993-2024 Robert McNeel & Associates. All Rights Reserved.
Blogger icon Food4Rhino