MeshOutline

Creates polyline curve outlines of mesh objects.

Syntax

rhinoscriptsyntax.MeshOutline (objects, view=None)

rhinoscript.mesh.MeshOutline (objects, view=None)

Parameters

objects

Required. one or more identifiers for meshes to outline.

view

Optional.  The title or identifier of the view to use as the outline direction.  If omitted, the current active view is used.

Returns

List

The identifiers of the new polyline curves if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

objs = rs.GetObjects("Select mesh objects to outline", rs.filter.mesh)

if objs: rs.MeshOutline(objs)

Also See

IsMesh

MeshObjects