Draws a Circle
Source position: agraphics.pas line 2447
procedure DrawCircle( |
Rp: pRastPort; |
xCenter: LongInt; |
yCenter: LongInt; |
r: LongInt |
); |
Rp |
|
A pointer to a RastPort |
xCenter |
|
X coordinate for center of Circle |
yCenter |
|
Y coordinate for center of Circle |
r |
|
Radius of Circle |
Calls DrawEllipse() with a = b = r
|
Draw an ellipse centered at cx,cy with vertical and horizontal radii of a,b respectively |