Creates a curve that duplicates a mesh border.
rhinoscriptsyntax.DuplicateMeshBorder( mesh_id )
rhinoscript.mesh.DuplicateMeshBorder( mesh_id )
mesh_id |
Required. String or Guid. The identifier of the mesh object. |
List |
A list of Guids identifying the new curve objects if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
obj = rs.GetObject("Select mesh", rs.filter.mesh)
if obj: rs.DuplicateMeshBorder(obj)