예제 #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