DuplicateMeshBorder

Creates a curve that duplicates a mesh border.

Syntax

rhinoscriptsyntax.DuplicateMeshBorder( mesh_id )

rhinoscript.mesh.DuplicateMeshBorder( mesh_id )

Parameters

mesh_id

Required.  String or Guid.  The identifier of the mesh object.

Returns

List

A list of Guids identifying the new curve objects if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

obj = rs.GetObject("Select mesh", rs.filter.mesh)

if obj: rs.DuplicateMeshBorder(obj)

Also See

DuplicateEdgeCurves

DuplicateSurfaceBorder