-
Need a assist to understand this expression lines
Can anyone explain these expression lines in the Ease Wizz expressions? Please explain me every things & every lines in that expression lines. I think Master Dan can give me a help.
Ease Wizz In Expo
function easeandwizz_inExpo(t, b, c, d) {
return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
}Ease Wizz Out Expo
function easeandwizz_outExpo(t, b, c, d) {
return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
}Ease Wizz InOut Expo
function easeandwizz_inOutExpo(t, b, c, d) {
if (t==0) return b;
if (t==d) return b+c;
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
}