Thread
:
Swirly Movement?
View Single Post
30th November 2015, 03:55
#
3
unsaved97
Junior Member
Join Date: Nov 2015
Posts: 15
Very simple.
init:
xa=ya;ya=-xa;
frame:
xt=xt+xa;
yt=yt+ya;
xa2=sin(xt)*.02;
ya2=sin(yt)*.02;
xz=1-sin(xa2);
yz=1-sin(ya2);
beat:
xa=rand(100)/1000-0.05;
ya=rand(100)/1000-0.05;
Pixel:
x=x*xz;x=x+sin(y+xt)*.05;
y=y*yz;y=y+sin(x+yt)*.05;
Attached Files
swirling example.avs
(1.9 KB, 464 views)
unsaved97
View Public Profile
Find More Posts by unsaved97