Creates one or more surfaces from planar curves.
Rhino.AddPlanarSrf (arrObjects)
arrObjects |
Required. Array. An array of curve object identifiers. |
Array |
An array of strings identifying the new objects if successful. |
Null |
If not successful, or on error. |
Const rhObjectCurve = 4
Dim arrObjects
arrObjects = Rhino.GetObjects("Select planar curves to build surface", rhObjectCurve)
If IsArray(arrObjects) Then
Rhino.AddPlanarSrf arrObjects
End If