Duplicates the edge curves of a surface or polysurface. For more information, see the Rhino help file for information on the DupEdge command.
Rhino.DuplicateEdgeCurves (strObject [, blnSelect])
strObject |
Required. String. The identifier of the surface or polysurface object. |
blnSelect |
Optional. Boolean. Select the duplicated edge curves. The default is not to select (False). |
Array |
An array of strings identifying the newly created curve objects if successful. |
Null |
If not successful, or on error. |
Dim strObject
strObject = Rhino.GetObject("Select surface or polysurface", 24)
If Not IsNull(strObject) Then
Rhino.DuplicateEdgeCurves strObject, True
Rhino.DeleteObject strObject
End If