Adds a 3 point elliptical curve to the document.
Rhino.AddEllipse3Pt (arrCenter, arrSecond, arrThird)
arrCenter |
Required. Array. The center point of the ellipse. |
arrSecond |
Required. Array. The end point of the X-axis. |
arrThird |
Required. Array. The end point of the Y-axis. |
String |
The identifier of the new object if successful. |
Null |
If not successful, or on error. |
Dim arrCenter, arrSecond, arrThird
arrCenter = Array(0,0,0)
arrSecond = Array(5,0,0)
arrThird = Array(0,10,0)
Rhino.AddEllipse3Pt arrCenter, arrSecond, arrThird