>function circp(x,y,r,c1,p,c2) p=p or 0xffff for a=x-r,x+r do for b=y-r,y+r do d=math.sqrt((a-x)^2+(b-y)^2) if d<=r then bit=(((b-y)//1)%4)*4+((a-x)//1)%4 if p&(2^bit) ~= 0 then pix(a,b,c1) end end end end end function TIC() cls() t=time()/200 circp(120,68,30,10,0xada7) circp(100,68+20*math.sin(t),20,6,0xaeab) circp(120+60*math.cos(t/2),40,20,3,0x8520) end