Creates a curve that duplicates a mesh border.
Rhino.DuplicateMeshBorder (strObject)
strObject |
Required. String. The identifier of the mesh object. |
Array |
An array of strings identifying the new curve objects if successful. |
Null |
If not successful, or on error. |
Const rhMesh = 32
Dim strObject
strObject = Rhino.GetObject("Select mesh", rhMesh)
If Not IsNull(strObject) Then
Rhino.DuplicateMeshBorder strObject
End If