Are my eye's going crazy

BlitzMax Forums/BlitzMax Programming/Are my eye's going crazy

Sarge(Posted 2005) [#1]
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

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



MattVonFat(Posted 2005) [#2]
I saw a circle briefly but i couldnt get it back once it disappeared. Maybe my eyes adjusted too it?


smilertoo(Posted 2005) [#3]
Hmmm, i only see some moving circles...no ghost circle in the middle.


xlsior(Posted 2005) [#4]
Optical illusion...

As soon as you focus on the bonus circle it disappears.


Sarge(Posted 2005) [#5]
cool cause this is good to create a one of those 3d illusions


Perturbatio(Posted 2005) [#6]
I see nothing but white in the middle, no matter how far away I get from it.