Returns the foci points of an elliptical-shaped curve object.
Rhino.EllipseFoci (strObject)
strObject |
Required. String. The object's identifier. |
Array |
An array of 3-D points identifying the foci of the ellipse if successful. |
Null |
If not successful, or on error. |
Dim strObject
strObject = Rhino.GetObject("Select ellipse")
If Rhino.IsEllipse(strObject) Then
Rhino.AddPoints Rhino.EllipseFoci(strObject)
End If