12345678910111213141516171819202122232425 |
- M=math
- S=M.sin
- R=M.random
- T="rellorcs rehtona rof emit"
- function TIC()t=time()/500
- for i=0,999 do
- x=R(239)-120
- y=R(135)-68
- W=(M.atan2(y,x)+M.pi)*2.54
- Y=999/(x*x+y*y+1)^.5
- G=((W//1)~(Y//1))/5
- pix(x+120,y+68, G+t)
- end
- for p=1,#T do
- print(T:sub(p,p),470-((t*50)+(p*9))%500,S(t*4+p)*9+68,0,0,2)
- end
- end
|