easing.py 94 B

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