-
Any way I can make this recursive expression elegant?
Basically, I like the result of the ‘easeOut’ expression, but wanted it a little ‘sharper’. Unfortunately, the only way I could seem to get it some what desirable was repeat the expression over and over again so the the ease was stronger. I know there has GOT to be a better way, if anyone could point me in the right direction for my future expression I’d appreciate it.
Thank you.
G1 = transform.position+[0,100];
G2 = transform.position;
finalPoint = inPoint+[1];
f = easeOut(time,inPoint,finalPoint,G1,G2);
f;
l = easeOut(time,inPoint,finalPoint,G1,f);
l;
j = easeOut(time,inPoint,finalPoint,G1,l);
j;
easeOut(time,inPoint,finalPoint,G1,j);