"Neo-Tokyo Circular Route"
He could hear the highway, but his visor was cracked, and all he could see was a kaleidoscope of lights and the shadows of passing cars.
#genuary Pure black and white. No gray.
#pico8 #codeart #tweetcart #postcart #generative #sizecoding
source below
He could hear the highway, but his visor was cracked, and all he could see was a kaleidoscope of lights and the shadows of passing cars.
#genuary Pure black and white. No gray.
#pico8 #codeart #tweetcart #postcart #generative #sizecoding
source below
Comments
::r::
a,b,c,d={},c,b,d+.25
cls(b)
::_::
if(rnd(32)<#a+4)add(a,{rnd(128),rnd(128),rnd(),2})
if(#a>128)goto r
for l in all(a)do
l[1]+=cos(d)/4
l[2]+=sin(d)/4
l[3]+=.0003
l[4]*=1.1
x=l[1]
y=l[2]
u=cos(l[3])*l[4]
v=sin(l[3])*l[4]
line(x+u,y+v,x-u,y-v,c)
end
flip()
goto _