mirror of
https://github.com/clockworkpi/launcher.git
synced 2025-12-12 17:58:50 +01:00
8 lines
89 B
Python
8 lines
89 B
Python
|
|
import math
|
|
|
|
|
|
def SineIn(t, b, c, d):
|
|
return -c * math.cos(t/d * (math.pi/2)) + c + b
|
|
|