Creates polyline curve outlines of mesh objects.
rhinoscriptsyntax.MeshOutline (objects, view=None)
rhinoscript.mesh.MeshOutline (objects, view=None)
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. |
List |
The identifiers of the new polyline curves if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
objs = rs.GetObjects("Select mesh objects to outline", rs.filter.mesh)
if objs: rs.MeshOutline(objs)