Returns the quadrant points of an elliptical-shaped curve object.
rhinoscriptsyntax.EllipseQuadPoints (curve_id)
rhinoscript.curve.EllipseQuadPoints (curve_id)
curve_id |
Required. String or Guid. The object's identifier. |
Tuple |
A tuple of four 3-D points identifying the quadrants of the ellipse if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
obj = rs.GetObject("Select ellipse")
if rs.IsEllipse(obj):
rs.AddPoints( rs.EllipseQuadPoints(obj) )