Example #1
0
 def afterThis(self, other):
     '''
     @param other: Animation
     '''
     self.__anim_queue.append(other)
     Animation.chain([self,other])
     return other
Example #2
0
 def __init__(self, func, curve, duration):
     self.curve = curve
     self.func = func
     Animation.__init__(self, self.eachFrame, (duration, 0, len(curve) - 1))
Example #3
0
 def __init__(self,func,curve,duration):
     self.curve = curve
     self.func = func
     Animation.__init__(self,self.eachFrame,(duration,0,len(curve)-1))