Creates a surface from 2, 3, or 4 edge curves.
Rhino.AddEdgeSrf (arrObjects)
arrObjects |
Required. Array. An array of 2, 3, or 4 curve object identifiers. |
String |
The identifier of the new object if successful. |
Null |
If not successful, or on error. |
Const rhObjectCurve = 4
Dim arrObjects
arrObjects = Rhino.GetObjects("Select 2, 3, or 4 curves", rhObjectCurve)
If IsArray(arrObjects) Then
Rhino.AddEdgeSrf arrObjects
End If