-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmicky-mouse.py
388 lines (324 loc) · 8.81 KB
/
micky-mouse.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
#draw mickey mouse using turtle
#importing necessary modules
from tkinter import N
import turtle
import colorsys
#Initialize a variable for turtle
micky_mouse = turtle.Turtle()
micky_mouse.speed(0)
#Create a turtle screen
screen= turtle.Screen()
#Define height and width of screen
screen.setup(1200,600)
#Define Background color of screen
screen.bgcolor('#ffdbac')
screen.update()
# Define title of program
turtle.title("Copy Assignment Turtle")
#Code for drawing head of mickey mouse
#initializing starting point of head
micky_mouse.goto(0,-150)
#filling color in head
micky_mouse.begin_fill()
#setting color of head
micky_mouse.color('black')
#drawing head
micky_mouse.circle(150)
#ending fill
micky_mouse.end_fill()
#Code for drawing ears of mickey mouse
#left ear
#initializing starting point of left ear
micky_mouse.goto(-120,100)
#filling color in left ear
micky_mouse.begin_fill()
#setting color of left ear
micky_mouse.color('black')
#drawing left ear
micky_mouse.circle(90)
#ending fill
micky_mouse.end_fill()
#right ear
#initializing starting point of right ear
micky_mouse.goto(120,100)
#filling color in right ear
micky_mouse.begin_fill()
#setting color of right ear
micky_mouse.color('black')
#drawing right ear
micky_mouse.circle(90)
#ending fill
micky_mouse.end_fill()
#Code for drawing face of mickey mouse
#initializing starting point of face dip
micky_mouse.goto(40,-190)
#filling color in face dip
micky_mouse.begin_fill()
#setting color of face dip
micky_mouse.color('#ffdbac')
#drawing face dip
micky_mouse.circle(120)
#ending fill
micky_mouse.end_fill()
micky_mouse.goto(-40,-190)
micky_mouse.begin_fill()
micky_mouse.color('#ffdbac')
micky_mouse.circle(120)
micky_mouse.end_fill()
#Code for face outline
#initializing starting point of face outline
micky_mouse.goto(0,-150)
#setting color of face outline
micky_mouse.color('black')
#drawing face outline
micky_mouse.circle(150)
#Code for drawing eyes of mickey mouse
#initializing starting point of left eye
micky_mouse.penup()
micky_mouse.goto(-50,-25)
micky_mouse.pendown()
def draw_left_eye(rad):
for i in range(4):
# two arcs
#filling color in eyes
micky_mouse.begin_fill()
#setting color of eyes
micky_mouse.color('white')
#DRAW eyes
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//4,90)
#ending fill
micky_mouse.end_fill()
# Main section
# tilt the shape to negative 45
micky_mouse.seth(45)
draw_left_eye(40)
#Code of left eye ball
micky_mouse.penup()
micky_mouse.goto(-50,-20)
micky_mouse.pendown()
#filling color in left eye
micky_mouse.begin_fill()
#setting color of left eye
micky_mouse.color('black')
#drawing left eye
micky_mouse.circle(8)
#ending fill
micky_mouse.end_fill()
#initializing starting point of right eye
micky_mouse.penup()
micky_mouse.goto(55,-25)
micky_mouse.pendown()
def draw_eye(rad):
for i in range(4):
# two arcs
#filling color in eyes
micky_mouse.begin_fill()
#setting color of eyes
micky_mouse.color('white')
#DRAW eyes
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//4,90)
#ending fill
micky_mouse.end_fill()
# Main section
# tilt the shape to negative 45
micky_mouse.seth(45)
draw_eye(40)
# code for right eye ball
micky_mouse.penup()
micky_mouse.goto(50,-20)
micky_mouse.pendown()
#filling color in right eye
micky_mouse.begin_fill()
#setting color of right eye
micky_mouse.color('black')
#drawing right eye
micky_mouse.circle(8)
#ending fill
micky_mouse.end_fill()
#Code for drawing outline of eyes of mickey mouse
#initializing starting point of right eye outline
micky_mouse.penup()
micky_mouse.goto(55,-25)
micky_mouse.pendown()
def draw_reye_outline(rad):
for i in range(4):
# two arcs
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//4,90)
# Main section
# tilt the shape to negative 45
micky_mouse.seth(45)
draw_reye_outline(40)
#initializing starting point of left eye outline
micky_mouse.penup()
micky_mouse.goto(-50,-25)
micky_mouse.pendown()
def draw_leye_outline(rad):
for i in range(4):
# two arcs
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//4,90)
# Main section
# tilt the shape to negative 45
micky_mouse.seth(45)
draw_leye_outline(40)
#Code for drawing nose of mickey mouse
#initializing starting point of nose
micky_mouse.penup()
micky_mouse.goto(-20,-50)
micky_mouse.pendown()
def draw(rad):
for i in range(3):
# two arcs
#filling color in nose
micky_mouse.begin_fill()
#setting color of nose
micky_mouse.color('black')
#DRAW NOSE
micky_mouse.circle(rad,90)
micky_mouse.circle(rad//3,90)
#ending fill
micky_mouse.end_fill()
# Main section
# tilt the shape to negative 45
micky_mouse.seth(-45)
draw(25)
#speed of turtle
micky_mouse.speed(3)
#Code for drawing lips of mickey mouse
#initializing starting point of lips
micky_mouse.speed(0)
micky_mouse.penup()
micky_mouse.goto(-48,-78)
micky_mouse.pendown()
#direction of turtle
micky_mouse.right(90)
#setting heading of turtle
micky_mouse.setheading(-50)
#drawing lips
for x in range (110):
micky_mouse.forward(1)
micky_mouse.left(1)
# micky_mouse.left(110)
# micky_mouse.forward(110)
# micky_mouse.end_fill()
micky_mouse.speed(0)
#Code for drawing eyebrows of mickey mouse
micky_mouse.setheading(-155)
#setting color of left eyebrow
micky_mouse.color('black')
#intialze pen thickness
micky_mouse.pensize(2)
micky_mouse.penup()
#initializing starting point of left eyebrow
micky_mouse.goto(-40,-70)
micky_mouse.pendown()
#drawing left eyebrow
micky_mouse.circle(30,40)
#hide turtle
micky_mouse.hideturtle()
#code for drawing right eyebrow
micky_mouse.setheading(-245)
#setting color of right eyebrow
micky_mouse.color('black')
#intialze pen thickness
micky_mouse.pensize(2)
micky_mouse.penup()
#initializing starting point of right eyebrow
micky_mouse.goto(50,-80)
micky_mouse.pendown()
#drawing right eyebrow
micky_mouse.circle(30,40)
#hide turtle
micky_mouse.hideturtle()
#Code for drawing tongue of mickey mouse
micky_mouse.pensize(1)
micky_mouse.penup()
micky_mouse.goto(-33,-92)
micky_mouse.pendown()
#direction of turtle
micky_mouse.right(90)
#setting heading of turtle
micky_mouse.setheading(-45)
#drawing lips
micky_mouse.forward(20)
micky_mouse.circle(25,95)
micky_mouse.forward(20)
#Code for background pattern
#Code for first pattern
h=0
n=50
micky_mouse.pensize(3)
for i in range (50):
c = colorsys.hsv_to_rgb(h, 1.0, 0.8)
h+=1/n
micky_mouse.penup()
#initializing starting point of background pattern
micky_mouse.goto(500,200)
micky_mouse.pendown()
micky_mouse.hideturtle()
#setting color of background pattern
micky_mouse.pencolor(c)
#drawing background pattern
micky_mouse.circle(i,90)
#moving turtle in forward direction
micky_mouse.forward(i)
#moving turtle in right direction
micky_mouse.right(270)
micky_mouse.circle(i,270)
micky_mouse.forward(i)
micky_mouse.right(180)
micky_mouse.speed(0)
#Code for second pattern
for i in range (50):
c = colorsys.hsv_to_rgb(h, 1.0, 0.8)
h+=1/n
micky_mouse.penup()
micky_mouse.goto(-500,200)
micky_mouse.pendown()
micky_mouse.hideturtle()
micky_mouse.pencolor(c)
micky_mouse.circle(i,90)
micky_mouse.forward(i)
micky_mouse.right(270)
micky_mouse.circle(i,270)
micky_mouse.forward(i)
micky_mouse.right(180)
micky_mouse.speed(0)
#Code for third pattern
for i in range (50):
c = colorsys.hsv_to_rgb(h, 1.0, 0.8)
h+=1/n
micky_mouse.penup()
micky_mouse.goto(500,-200)
micky_mouse.pendown()
micky_mouse.hideturtle()
micky_mouse.pencolor(c)
micky_mouse.circle(i,90)
micky_mouse.forward(i)
micky_mouse.right(270)
micky_mouse.circle(i,270)
micky_mouse.forward(i)
micky_mouse.right(180)
micky_mouse.speed(0)
#Code for fourth pattern
for i in range (50):
c = colorsys.hsv_to_rgb(h, 1.0, 0.8)
h+=1/n
micky_mouse.penup()
micky_mouse.goto(-500,-200)
micky_mouse.pendown()
micky_mouse.hideturtle()
micky_mouse.pencolor(c)
micky_mouse.circle(i,90)
micky_mouse.forward(i)
micky_mouse.right(270)
micky_mouse.circle(i,270)
micky_mouse.forward(i)
micky_mouse.right(180)
micky_mouse.speed(0)
turtle.done()
#code for holding the output screen
turtle.mainloop()