The author is Martin Kleppe (@aemkei on X), famous for his incredible quines and other JS magic.
A simple 16x16 dot animation from simple math rules
61–70 of 105 posts
Re: A simple 16x16 dot animation from simple math rules
#62Similar project, but based on Forth: https://forthsalon.appspot.com/
Re: A simple 16x16 dot animation from simple math rules
#63Stretchy curtain:
(sin(t) * sin(t) + 0.2) * (sin(y / (cos(t) * cos(t) + 0.7)) + sin(x))
Re: A simple 16x16 dot animation from simple math rules
#64Re: A simple 16x16 dot animation from simple math rules
#65Pretty psychedelic
https://tixy.land/?code=Math.cos%28y%2F8%2Bsqrt%282*t*i%2Bx%...
Re: A simple 16x16 dot animation from simple math rules
#66Re: A simple 16x16 dot animation from simple math rules
#67I feel so dumb. How can I make this zoom centered on the grid?
https://tixy.land/?code=Math.sin%28x*t%29%2BMath.cos%28y*t%2...
Re: A simple 16x16 dot animation from simple math rules
#68Wow this is extremely well done! All the defaults are chosen so well to make simple inputs get pretty results. The interpretation of the result value, the scale of `t`, the colors, it's all not trivial at all to get right! Hats off
Re: A simple 16x16 dot animation from simple math rules
#69I feel so dumb. How can I make this zoom centered on the grid? https://tixy.land/?code=Math.sin%28x*t%29%2BMath.cos%28y*t%2...
I think something like https://tixy.land/?code=sin%28%28x-7.5%29*t%29%2Bcos%28%28y-...
Re: A simple 16x16 dot animation from simple math rules
#70https://tixy.land/?code=%28%28x%2Bt%29%5E%28t%7Cy*t%29%29%25...
Strobe warning, especially after about 20 seconds.