-----Original Message-----
>>From: Freijo [SMTP:[EMAIL PROTECTED]]
>>Sent: Thursday, December 23, 1999 3:11 PM
>>To: [EMAIL PROTECTED]
>>Subject: The circle
>>
>>I'm learning to programm with the SVGAlib, because graphics are more
>>enjoyable. But I get surprised yesterday when I tried to draw a circle
from
>>the equation x^2+y^2=radius^2 ( y= sqrt{radius^2-x^2} ) but it doesn't
draws
>>a circle, but a curved line.
>>What I'm doing bad?
>>Sorry if I'm annoying you.
--------------------------
My guess is that you need the negative y points aswell
( y= sqrt{radius^2-x^2} && y= -sqrt{radius^2-x^2} )
to draw both halves of the circle, but if that isn't the problem, maybe
posting a source snippet may be better, cos i'm not to sure from what you
gave what exactly the problem might be.