A simple 16x16 dot animation from simple math rules
41–50 of 105 posts
Re: A simple 16x16 dot animation from simple math rules
#42candy waves on a shore: https://tixy.land/?code=sin%28i*t%2F128%29
candy lasers redux: https://tixy.land/?code=0.2%2Bsin%28i*t%2F64%29%2B.3*sin%288...
Re: A simple 16x16 dot animation from simple math rules
#43Basically https://www.shadertoy.com/ for dummies. Right up my alley haha ;)
Re: A simple 16x16 dot animation from simple math rules
#44Is there a pattern or animation you can manually animate on those dots that can’t be represented by an equation?
Re: A simple 16x16 dot animation from simple math rules
#45Previous discussion with patterns in comments: https://news.ycombinator.com/item?id=24974534
Re: A simple 16x16 dot animation from simple math rules
#46The classic: sin(x/2+t)+cos(y/2+sin(t))
Link for the lazy: https://tixy.land/?code=sin%28x%2F2%2Bt%29%2Bcos%28y%2F2%2Bs...
Re: A simple 16x16 dot animation from simple math rules
#47red traffic light https://tixy.land/?code=%28floor%28t%29%252%29%3F0%3A-cos%28...
Re: A simple 16x16 dot animation from simple math rules
#48Re: A simple 16x16 dot animation from simple math rules
#49Tixy is amazing! I built something very similar:
I wanted to create animations for my LED matrix screen, and I couldn’t find tixy anywhere. Only after I built pulsar I found it again.
Another similar project is https://sliderland.blinry.org/ which uses HTML sliders.
Fun stuff!
Re: A simple 16x16 dot animation from simple math rules
#50fun! Here's a heart: https://tixy.land/?code=hypot%28x-7%2Cy%2Babs%28x-7%29-9%29-...