Adds an elliptical curve to the document.
rhinoscriptsyntax.AddEllipse ( plane, radiusX, radiusY )
rhinoscript.curve.AddEllipse ( plane, radiusX, radiusY )
plane |
Required. The plane on which the ellipse will lie. The origin of the plane will be the center point of the ellipse. |
radiusX |
Required. Number. The radius in the X-axis direction. |
radiusY |
Required. Number. The radius in the Y-axis direction. |
Guid |
The identifier of the new object if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
plane = rs.WorldXYPlane()
rs.AddEllipse( plane, 5.0, 10.0 )