AddEllipse

Adds an elliptical curve to the document.

Syntax

rhinoscriptsyntax.AddEllipse ( plane, radiusX, radiusY )

rhinoscript.curve.AddEllipse ( plane, radiusX, radiusY )

Parameters

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.

Returns

Guid

The identifier of the new object if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

plane = rs.WorldXYPlane()

rs.AddEllipse( plane, 5.0, 10.0 )

Also See

AddEllipse3Pt

IsEllipse

EllipseCenterPoint

EllipseQuadPoints