-
How to make curved motion using my existing expression?
Hi, I have a very simple expression that uses the ‘easeIn’ expression, and it looks essentially like this:
A=[0,500];
B=[2000,500];
easeIn(time,0,2,A,B);As you can see, the motion moves in a line from point A to point B, however it moves straight. I was wondering if there was a way to make the movement *curved*? (something like this: https://img.tfd.com/mgh/Investopedia/Yield_Curve.png is what I had in mind). And ideally, if there is anyway I could adjust this curve slightly if I have to.
A=[0,500];
B=[2000,500];
easeIn(time,0,2,A,B);