-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathdraw.py
82 lines (61 loc) · 1.45 KB
/
draw.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
"""This module contains a code example related to
Think Python, 2nd Edition
by Allen Downey
http://thinkpython2.com
Copyright 2015 Allen Downey
License: http://creativecommons.org/licenses/by/4.0/
"""
from __future__ import print_function, division
import turtle
from Point1 import Point, Rectangle
from Circle import Circle
import polygon
def draw_circle(t, circle):
"""Draws a circle.
t: Turtle
circle: Circle
"""
t.pu()
t.goto(circle.center.x, circle.center.y)
t.fd(circle.radius)
t.lt(90)
t.pd()
polygon.circle(t, circle.radius)
def draw_rect(t, rect):
"""Draws a rectangle.
t: Turtle
rect: Rectangle
"""
t.pu()
t.goto(rect.corner.x, rect.corner.y)
t.setheading(0)
t.pd()
for length in rect.width, rect.height, rect.width, rect.height:
t.fd(length)
t.rt(90)
if __name__ == '__main__':
bob = turtle.Turtle()
# draw the axes
length = 400
bob.fd(length)
bob.bk(length)
bob.lt(90)
bob.fd(length)
bob.bk(length)
# draw a rectangle
box = Rectangle()
box.width = 100.0
box.height = 200.0
box.corner = Point()
box.corner.x = 50.0
box.corner.y = 50.0
draw_rect(bob, box)
# draw a circle
circle = Circle
circle.center = Point()
circle.center.x = 150.0
circle.center.y = 100.0
circle.radius = 75.0
draw_circle(bob, circle)
# wait for the user to close the window
turtle.mainloop()