Verifies an object is an elliptical-shaped curve object.
Rhino.IsEllipse (strObject)
strObject |
Required. String. The object's identifier. |
Boolean |
True if successful, otherwise False. |
Null |
On error. |
Dim strObject
strObject = Rhino.GetObject("Select an ellipse")
If Rhino.IsEllipse(strObject) Then
Rhino.Print "The object is an ellipse."
Else
Rhino.Print "The object is not an ellipse."
End If