Verifies an object is a NURBS surface.
Rhino.IsNurbsSurface (strObject)
strObject |
Required. String. The identifier of the object to verify. |
Boolean |
True or False indicating success or failure. |
Null |
On error. |
Dim strObject
strObject = Rhino.GetObject("Select a surface")
If Rhino.IsNurbsSurface(strObject) Then
Rhino.Print "The object is a NURBS curve."
Else
Rhino.Print "The object is not a NURBS surface."
End If