EasingQuadratic function

double EasingQuadratic(
  1. double t
)

Implementation

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