Returns the distance from the center of an elliptical-shaped curve object to a focus.
Rhino.EllipseFocalDistance (strObject)
strObject |
Required. String. The object's identifier. |
Double |
The distance if successful. |
Null |
If not successful, or on error. |
Dim strObject
strObject = Rhino.GetObject("Select ellipse")
If Rhino.IsEllipse(strObject) Then
MsgBox Rhino.EllipseFocalDistance(strObject)
End If