-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphics.py
40 lines (32 loc) · 1.04 KB
/
graphics.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
from turtle import * # imports the module turtle,
#* stands for all, which makes things easier
speed(0) # sets the speed of drawing to 0, which is the fastest
pencolor('white') # sets the color of the pen/lines to white
bgcolor('black') # sets the color of the background/canvas to black
x = 0 # creates a variable x with value 0
up() # lifts up the pen, so no lines are drawn
#note fd() means move forward, bk() means move back
# rt() or lt() means tilt right by a certain angle
rt(45)
fd(90)
rt(135)
down() # sets down the pen, so that turtle can draw
while x < 120: # while the value of x is lesser than 120,
#continuously do this:
fd(200)
rt(61)
fd(200)
rt(61)
fd(200)
rt(61)
fd(200)
rt(61)
fd(200)
rt(61)
fd(200)
rt(61)
rt(11.1111)
x = x+1 # adds 1 to the value of x,
# so that it is closer to 120 after every loop
exitonclick() # When you click, turtle exits.
#That's all! Try customizing the script! 8)