about summary refs log tree commit diff stats
path: root/rnd/lua/04tcc.lua
blob: b9dbed16607a5cc631418e234444cf8a8f95fc04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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