From a7dac34d9e1a56c293c8c0f3212e31c25779a9d7 Mon Sep 17 00:00:00 2001 From: Liene Verzemnieks Date: Wed, 8 Jul 2015 18:17:34 -0400 Subject: [PATCH] so it turns out this REALLY needs to be a float --- chapter04/mypolygon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter04/mypolygon.py b/chapter04/mypolygon.py index f1d0ceb..b1ad211 100644 --- a/chapter04/mypolygon.py +++ b/chapter04/mypolygon.py @@ -31,7 +31,7 @@ def polygon(t, length, n): ''' for i in range(n): fd(t, length) - lt(t, 360/n) + lt(t, 360.0/n) def circle(t, r): '''