To create an Ellipse in the Main Menu select New Entity - > Basic - > Ellipse
You can define an Ellipse by its Center point, a Vector giving its normal, another vector specifying the direction of ellipse's Major Axis and its Major & Minor Radiuses.
The Result of the operation will be a GEOM_Object (edge).
TUI Command (without the major axis): geompy.MakeEllipse(Point, Vector, RadiusMajor, RadiusMinor, VectorMajor=None)
Arguments: Name + 1 vertex (for the center) + 1 edge (for the direction) + 1 X Radius + 1 Y Radius + 1 optional edge (for the major axis direction).
If the VectorMajor argument is omitted, the ellipse's major axis will be along the X-axis.
Example:
Our TUI Scripts provide you with useful examples of creation of Basic Geometric Objects.