Adds a 3 point elliptical curve to the document.
rhinoscriptsyntax.AddEllipse3Pt (center, second, third)
rhinoscript.curve.AddEllipse3Pt (center, second, third)
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. |
Guid |
The identifier of the new object if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
center = (0,0,0)
second = (5,0,0)
third = (0,10,0)
rs.AddEllipse3Pt( center, second, third )