Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bounce.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-10-06 03:01:56 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-10-06 03:01:56 (GMT)
commitb28cd817414248492c44c07227248c8204612a28 (patch)
tree0e47551956f55a5beb49313430905c171d6fd840 /bounce.py
parent6ff80ec06e0d666e85fb12c7638cb5dbd4fa7de9 (diff)
some more code cleanup
Diffstat (limited to 'bounce.py')
-rw-r--r--bounce.py18
1 files changed, 8 insertions, 10 deletions
diff --git a/bounce.py b/bounce.py
index 4d57bc6..a2c03c8 100644
--- a/bounce.py
+++ b/bounce.py
@@ -116,6 +116,14 @@ def _svg_style(extras=''):
return 'style="%s"/>\n' % (extras)
+def svg_from_file(pathname):
+ ''' Read SVG string from a file '''
+ f = file(pathname, 'r')
+ svg = f.read()
+ f.close()
+ return(svg)
+
+
class Bounce():
''' The Bounce class is used to define the ball and the user
interaction. '''
@@ -361,7 +369,6 @@ class Bounce():
self.ball.move((self.ball.get_xy()[0], self.ball_y_max))
for spr in self.cells:
spr.move((0, self.height)) # hide the animation frames
- _logger.debug('%d', self.frame_counter)
self._test(easter_egg=True)
self.new_bounce = True
self.timeout = gobject.timeout_add(BOUNCE_PAUSE, self._move_ball)
@@ -485,7 +492,6 @@ class Bounce():
def _keyrelease_cb(self, area, event):
''' Keyrelease: stop horizontal movement '''
- _logger.debug('%f', self.dx)
self.dx = 0.
return True
@@ -497,11 +503,3 @@ class Bounce():
def _destroy_cb(self, win, event):
''' Callback to handle quit '''
gtk.main_quit()
-
-
-def svg_from_file(pathname):
- ''' Read SVG string from a file '''
- f = file(pathname, 'r')
- svg = f.read()
- f.close()
- return(svg)