-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIron Man Art.py
111 lines (92 loc) · 1.31 KB
/
Iron Man Art.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# Iron Man Logo Program
from turtle import *
bgcolor('#00ccff')
title('Turtle test')
speed(15)
pensize(3)
color('black')
#Mask
fillcolor('red')
goto(-5,-20)
begin_fill()
circle(115)
end_fill()
up()
goto(-120,90)
seth(60)
fd(60)
pendown()
#Inner Mask Design
begin_fill()
fillcolor('yellow')
for i in range(45):
rt(1)
fd(2)
seth(270)
fd(60)
seth(0)
fd(30)
seth(90)
fd(60)
seth(0)
for i in range(50):
rt(1.5)
fd(2)
for i in range(60):
rt(0.8)
fd(2)
for i in range(5):
rt(3)
fd(2)
seth(120)
fd(20)
seth(180)
fd(90)
seth(240)
fd(20)
seth(140)
for i in range(70):
rt(1)
fd(2)
end_fill()
up()
goto(20,100)
down()
#Eyes
begin_fill()
fillcolor('white')
seth(30)
fd(60)
seth(300)
fd(20)
seth(210)
fd(60)
seth(120)
fd(20)
end_fill()
up()
goto(-20,100)
down()
begin_fill()
seth(140)
fd(60)
seth(225)
fd(20)
seth(319)
fd(60)
seth(40)
fd(20)
end_fill()
up()
goto(-20,-120)
down()
speed(1)
write('Feels like something raining down hellfire,',align='center',font=('Arial', 25,'normal'))
up()
goto(-20,-155)
down()
write('and here I am without an umbrella.',align='center',font=('Arial', 25,'normal'))
up()
goto(200,-190)
write(' - RDJ',align='center',font=('Arial', 25,'normal'))
done()