From 524d173f3b7a6887f61b0d2f644d9103ea39feb7 Mon Sep 17 00:00:00 2001 From: Gary Martin Date: Thu, 25 Oct 2012 03:05:40 +0000 Subject: Corrected minute and second hand lengths (second hand should be longer than minute). --- (limited to 'clock.py') diff --git a/clock.py b/clock.py index 48ff674..0a30391 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.7 * + cr.line_to(int(self._center_x + self._radius * 0.8 * math.sin(math.pi / 30 * minutes)), - int(self._center_y + self._radius * 0.7 * + int(self._center_y + self._radius * 0.8 * - 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.8 * + cr.line_to(int(self._center_x + self._radius * 0.7 * math.sin(math.pi / 30 * seconds)), - int(self._center_y + self._radius * 0.8 * + int(self._center_y + self._radius * 0.7 * - math.cos(math.pi / 30 * seconds))) cr.stroke() -- cgit v0.9.1