Bypass navigation menu
RGB Classic Games
Keeping the classics alive
Currently hosting 566 great games!
Return to Chapter 2

ExtCircle(X, Y, Radius)

Draws a circle centered at X, Y using the specified radius, current values of aspect ratio and current drawing color.

See the SetAspect function for a description of the aspect ratio.

Parameters

X - Horizontal center of circle
Y - Vertical center of circle
Radius - Radius of circle

Examples

BASIC

CALL ExtCircle(160, 100, 75)

PASCAL

ExtCircle(160, 100, 75);

BGI equivalent

void circle(int x, int y, int radius);