EasingCubic function

double EasingCubic(
  1. double t
)

Implementation

double EasingCubic(double t) => t * t * t;