easeInOut function

double easeInOut(
  1. double t
)

Implementation

double easeInOut(double t) {
  return t < 0.5 ? 0.5 * pow(2 * t, 2) : 0.5 * (2 - pow(2 * (1 - t), 2));
}