Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@laptop.org>2013-01-22 09:47:16 (GMT)
committer Simon Schampijer <simon@laptop.org>2013-01-22 09:47:16 (GMT)
commit56da4d8e0c15e386ca4c53e54744c844d68d7ad1 (patch)
tree4fd92ef41f393cbc1ff87eeeabb87a32cf8f4d13
parentd77c6f563d9534b3b304e75b2042a7acb4facbcc (diff)
Animation: Remove non-descriptive doc string
-rw-r--r--src/sugar3/graphics/animator.py49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/sugar3/graphics/animator.py b/src/sugar3/graphics/animator.py
index 5cb4ca1..de59404 100644
--- a/src/sugar3/graphics/animator.py
+++ b/src/sugar3/graphics/animator.py
@@ -43,39 +43,13 @@ class Animator(GObject.GObject):
self._start_time = None
def add(self, animation):
- """
- Parameter
- ---------
- animation :
-
- """
self._animations.append(animation)
def remove_all(self):
- """
- Parameters
- ----------
- None :
-
- Returns
- -------
- None :
-
- """
self.stop()
self._animations = []
def start(self):
- """
- Parameters
- ----------
- None :
-
- Returns
- -------
- None
-
- """
if self._timeout_sid:
self.stop()
@@ -84,16 +58,6 @@ class Animator(GObject.GObject):
int(self._interval * 1000), self._next_frame_cb)
def stop(self):
- """
- Parameters
- ----------
- None :
-
- Returns
- -------
- None :
-
- """
if self._timeout_sid:
GObject.source_remove(self._timeout_sid)
self._timeout_sid = 0
@@ -120,19 +84,6 @@ class Animation(object):
self.end = end
def do_frame(self, t, duration, easing):
- """
- Parameters
- ----------
- t:
-
- duration:
-
- easing:
-
- Returns
- None:
-
- """
start = self.start
change = self.end - self.start