outCubic static method

double outCubic(
  1. double x
)

Implementation

static double outCubic(double x) => 1.0 - pow(1.0 - x, 3);