AddEllipse3Pt

Adds a 3 point elliptical curve to the document.

Syntax

rhinoscriptsyntax.AddEllipse3Pt (center, second, third)

rhinoscript.curve.AddEllipse3Pt (center, second, third)

Parameters

center

Required.  The center point of the ellipse.

second

Required.  The end point of the X-axis.

third

Required.  The end point of the Y-axis.

Returns

Guid

The identifier of the new object if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

center = (0,0,0)

second = (5,0,0)

third = (0,10,0)

rs.AddEllipse3Pt( center, second, third )

Also See

AddEllipse

IsEllipse

EllipseCenterPoint

EllipseQuadPoints