Verifies an object is a surface of revolution.
Rhino.IsRevSurface (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.IsRevSurface(strObject) Then
Rhino.Print "The object is a surface of revolution."
Else
Rhino.Print "The object is not a surface of revolution."
End If