GINO Graphics Suite - GINO v9.0  

gDrawEllipse2D

Syntax

[C/C++:]
void gDrawEllipse2D(float xc, float yc, float angle, float major, float minor);
[F90:]
subroutine gDrawEllipse2D(xc, yc, angle, major, minor)
real, intent(in) :: xc,yc,angle,major,minor

Arguments

xc, yc
Centre point of ellipse

angle
Angle by which the major axis of the ellipse differs from the current X-axis

major
Radius of major axis

minor
Radius of minor axis

Description

The routine gDrawEllipse2D() draws an ellipse using the current line style according to the specified arguments. The current drawing position after drawing the ellipse is on the major axis (rotated by the specified angle).

The number of increments of the ellipse is controlled by the current arc tolerance as set by gSetArcTolerance().

See Also

gDrawEllipse2D Usage
gSetArcTolerance