1 def ease_out_expo(self, x): # 现在用的! 2 if x == 1: 3 return 1 4 else: 5 return 1 - pow(2, -12 * x) # 次数越高成功率越高
滑动轨迹函数记录
原文:https://www.cnblogs.com/sdosun/p/13399173.html