Creates a curve that duplicates a surface or polysurface border.
Rhino.DuplicateSurfaceBorder (strObject [, intType])
strObject |
Required. String. The identifier of the surface or polysurface object. |
||||||||
intType |
Optional. Number. The border curves to return. The possible values are as follows:
|
Array |
An array of strings identifying the new curve objects if successful. |
Null |
If not successful, or on error. |
Const rhSurface = 8
Const rhPolysrf = 16
Dim strObject
strObject = Rhino.GetObject("Select surface or polysurface", rhSurface + rhPolysrf)
If Not IsNull(strObject) Then
Rhino.DuplicateSurfaceBorder strObject
End If