easing.py 89 B

1234567
  1. import math
  2. def SineIn(t, b, c, d):
  3. return -c * math.cos(t/d * (math.pi/2)) + c + b