Can somebody please tell me if there is a circle in the middle of the screen
{1} keep looking into the middle
{2} backup a bit away from your computer
thanks
{1} keep looking into the middle
{2} backup a bit away from your computer
thanks
Graphics 800,600,0,0 Local ticks:Double=0,ox:Double,oy:Double While Not KeyHit(key_escape) Cls SetClsColor 255,255,255 ox = Sin(ticks)*100 oy = Cos(ticks)*100 SetColor 0,0,255 DrawOval 417+ox-32,317+oy-32,30,30 SetColor 0,255,0 DrawOval 417-ox-32,317+oy-32,30,30 SetColor 255,0,0 DrawOval 417+ox-32,317-oy-32,30,30 ox1 = Sin(ticks1)*140 oy1 = Cos(ticks1)*140 SetColor 0,0,255 DrawOval 417+ox1-32,317+oy1-32,30,30 ticks:+10 ticks1:+2 Flip Wend