easeInSine static method

num easeInSine(
  1. num ratio
)

Implementation

static num easeInSine(num ratio) => 1.0 - cos(ratio * (pi / 2.0));