diff options
Diffstat (limited to 'rnd')
-rw-r--r-- | rnd/lua/04tcc.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/rnd/lua/04tcc.lua b/rnd/lua/04tcc.lua new file mode 100644 index 0000000..b9dbed1 --- /dev/null +++ b/rnd/lua/04tcc.lua @@ -0,0 +1,11 @@ +-- tcc day 04 + +function TIC() + t=time()/200 + s=math.sin + for x=0,240 do + for y=0,136 do + pix(x,y,s(x/16+t)+s(y/16+t)+t) + end + end +end \ No newline at end of file |