コード例 #1
0
ファイル: easing.py プロジェクト: byteface/domonic
 def easeInOut(t, b, c, d, aa, bb):
     return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b
コード例 #2
0
ファイル: easing.py プロジェクト: byteface/domonic
 def easeIn(t, b, c, d, aa, bb):
     return -c * Math.cos(t/d * (Math.PI/2)) + c + b