easeInSine static method

double easeInSine(
  1. double t
)

Sine easing in.

Implementation

static double easeInSine(double t) => 1.0 - math.cos((t * math.pi) / 2.0);