inOutQuint static method

double inOutQuint(
  1. double x
)

Implementation

static double inOutQuint(double x) =>
    x < 0.5 ? 16 * x * x * x * x * x : 1 - pow(-2 * x + 2, 5) / 2;