Page 1 of 1

Need help with circle drawing

Posted: Mon Jul 24, 2006 1:57 pm
by plad6111
How do you draw a circle?

Posted: Mon Jul 24, 2006 2:11 pm
by Antoni

Code: Select all

SCREEN 12   'or whatever GRAPHICS mode you want to use
CIRCLE (x.y),radius,color
X,Y are pixels from the top left corner of the screen, radius is in pixels too

Posted: Mon Jul 24, 2006 2:11 pm
by bungytheworm
Ok, open help and check CIRCLE.

Posted: Mon Jul 24, 2006 2:13 pm
by bungytheworm
Ok, antoni beated me like few seconds :D

Posted: Mon Jul 24, 2006 3:46 pm
by plad6111
But it doesn't work for me

Posted: Mon Jul 24, 2006 4:42 pm
by {Nathan}
Post your source code. Make sure to enclose your code with the

Code: Select all

[code]
[/code]

tags.

Posted: Tue Jul 25, 2006 12:38 am
by Seb McClouth
Did you try for e.g.

Code: Select all

SCREEN 12
CIRCLE (100, 100) , 50