EaseLinearInOut method

double EaseLinearInOut(
  1. num t,
  2. num b,
  3. num c,
  4. num d,
)

Implementation

double EaseLinearInOut(num t, num b, num c, num d) => c*t/d + b;