Animation: Remove non-descriptive doc string
This commit is contained in:
parent
d77c6f563d
commit
56da4d8e0c
@ -43,39 +43,13 @@ class Animator(GObject.GObject):
|
|||||||
self._start_time = None
|
self._start_time = None
|
||||||
|
|
||||||
def add(self, animation):
|
def add(self, animation):
|
||||||
"""
|
|
||||||
Parameter
|
|
||||||
---------
|
|
||||||
animation :
|
|
||||||
|
|
||||||
"""
|
|
||||||
self._animations.append(animation)
|
self._animations.append(animation)
|
||||||
|
|
||||||
def remove_all(self):
|
def remove_all(self):
|
||||||
"""
|
|
||||||
Parameters
|
|
||||||
----------
|
|
||||||
None :
|
|
||||||
|
|
||||||
Returns
|
|
||||||
-------
|
|
||||||
None :
|
|
||||||
|
|
||||||
"""
|
|
||||||
self.stop()
|
self.stop()
|
||||||
self._animations = []
|
self._animations = []
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
"""
|
|
||||||
Parameters
|
|
||||||
----------
|
|
||||||
None :
|
|
||||||
|
|
||||||
Returns
|
|
||||||
-------
|
|
||||||
None
|
|
||||||
|
|
||||||
"""
|
|
||||||
if self._timeout_sid:
|
if self._timeout_sid:
|
||||||
self.stop()
|
self.stop()
|
||||||
|
|
||||||
@ -84,16 +58,6 @@ class Animator(GObject.GObject):
|
|||||||
int(self._interval * 1000), self._next_frame_cb)
|
int(self._interval * 1000), self._next_frame_cb)
|
||||||
|
|
||||||
def stop(self):
|
def stop(self):
|
||||||
"""
|
|
||||||
Parameters
|
|
||||||
----------
|
|
||||||
None :
|
|
||||||
|
|
||||||
Returns
|
|
||||||
-------
|
|
||||||
None :
|
|
||||||
|
|
||||||
"""
|
|
||||||
if self._timeout_sid:
|
if self._timeout_sid:
|
||||||
GObject.source_remove(self._timeout_sid)
|
GObject.source_remove(self._timeout_sid)
|
||||||
self._timeout_sid = 0
|
self._timeout_sid = 0
|
||||||
@ -120,19 +84,6 @@ class Animation(object):
|
|||||||
self.end = end
|
self.end = end
|
||||||
|
|
||||||
def do_frame(self, t, duration, easing):
|
def do_frame(self, t, duration, easing):
|
||||||
"""
|
|
||||||
Parameters
|
|
||||||
----------
|
|
||||||
t:
|
|
||||||
|
|
||||||
duration:
|
|
||||||
|
|
||||||
easing:
|
|
||||||
|
|
||||||
Returns
|
|
||||||
None:
|
|
||||||
|
|
||||||
"""
|
|
||||||
start = self.start
|
start = self.start
|
||||||
change = self.end - self.start
|
change = self.end - self.start
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user