mirror of
https://github.com/clockworkpi/launcher_deot.git
synced 2025-12-14 00:18:54 +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
|
|
|