From 9a0061929ab17c47948d6be437a01b34a5ebb59d Mon Sep 17 00:00:00 2001 From: Gary Martin Date: Tue, 09 Oct 2012 20:22:21 +0000 Subject: Swap length of second hand and minute hand so that numbers are obscured less often. --- (limited to 'clock.py') diff --git a/clock.py b/clock.py index 0a30391..48ff674 100755 --- a/clock.py +++ b/clock.py @@ -789,9 +789,9 @@ class ClockFace(gtk.DrawingArea): cr.arc(self._center_x, self._center_y, 4 * self._line_width, 0, 2 * math.pi) cr.fill_preserve() cr.move_to(self._center_x, self._center_y) - cr.line_to(int(self._center_x + self._radius * 0.8 * + cr.line_to(int(self._center_x + self._radius * 0.7 * math.sin(math.pi / 30 * minutes)), - int(self._center_y + self._radius * 0.8 * + int(self._center_y + self._radius * 0.7 * - math.cos(math.pi / 30 * minutes))) cr.stroke() @@ -802,9 +802,9 @@ class ClockFace(gtk.DrawingArea): cr.arc(self._center_x, self._center_y, 3 * self._line_width, 0, 2 * math.pi) cr.fill_preserve() cr.move_to(self._center_x, self._center_y) - cr.line_to(int(self._center_x + self._radius * 0.7 * + cr.line_to(int(self._center_x + self._radius * 0.8 * math.sin(math.pi / 30 * seconds)), - int(self._center_y + self._radius * 0.7 * + int(self._center_y + self._radius * 0.8 * - math.cos(math.pi / 30 * seconds))) cr.stroke() -- cgit v0.9.1