-
Notifications
You must be signed in to change notification settings - Fork 1
/
皮卡丘a.py
581 lines (544 loc) · 12.6 KB
/
皮卡丘a.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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
# -*- coding: UTF-8 -*-
import random
import time
import turtle as t
# 设置背景颜色,窗口位置以及大小
t.colormode(255) # 颜色模式
t.speed(0)
t.screensize(800, 800, "white") # 画布大小背景颜色
t.setup(width=800, height=800, startx=None, starty=None) # 绘图窗口的大小和起始坐标
# t.bgpic("di_2_800.gif")
t.title("艺术设计皮卡丘!") # 设置绘图窗口的标题
t.resizemode('noresize') # 大小调整模式:auto,user,noresize
t.tracer(1)
t.hideturtle()
def mlingpen(x, y): # 移动画笔到指定位置
t.penup()
t.goto(x, y)
t.pendown()
def mlingpkqface(x, y): # 画皮卡丘的脸
"""详细流程: 1.画脸 2.画耳朵 3.画眼睛 4.画眼珠子 5.画鼻子 6.画嘴巴 7.画脸颊 8.画脸的线条"""
mlingpen(x, y)
t.pensize(3)
t.pencolor("#923E24")
t.fillcolor('#FBD624')
t.begin_fill()
t.seth(40)
t.circle(100, 30)
t.circle(40, 60)
t.right(30)
t.circle(160, 20)
t.seth(-20)
t.circle(300, 30)
t.circle(30, 50)
t.left(85)
t.circle(300, 85)
t.left(1)
t.circle(300, 35)
t.circle(30, 40)
t.seth(40)
t.circle(300, 32)
t.right(150)
t.circle(100, 30)
t.circle(30, 60)
t.left(180)
t.circle(100, 60)
t.right(30)
t.circle(100, 60)
t.circle(70, 120)
t.circle(-120, 80)
t.circle(35, 140)
t.right(60)
t.circle(300, 23)
t.right(60)
t.fd(10)
t.left(90)
t.fd(10)
t.right(60)
t.fd(10)
t.left(90)
t.circle(30, 23)
t.right(60)
t.fd(10)
t.left(90)
t.circle(90, 80)
t.right(170)
t.circle(70, 65)
t.right(20)
t.circle(-150, 20)
t.circle(20, 90)
t.right(200)
t.circle(50, 50)
t.goto(x, y)
t.end_fill()
t.penup()
t.goto(-72, -25)
t.pendown()
t.pencolor("#923E24")
t.fillcolor("#923E24")
t.begin_fill()
t.seth(-6)
t.circle(120, 30)
t.right(160)
t.circle(-50, 65)
t.end_fill()
mlingpen(209.21, 135.02)
t.pensize(3)
t.pencolor("#000000")
t.fillcolor('#000000')
t.seth(145)
t.begin_fill()
t.circle(300, 12)
t.left(50)
t.circle(60, 59)
t.left(88)
t.circle(190, 30)
t.end_fill()
mlingpen(-253.14, -105.48)
t.pensize(3)
t.pencolor("#000000")
t.fillcolor('#000000')
t.seth(40)
t.begin_fill()
t.circle(300, 12)
t.left(50)
t.circle(60, 57)
t.left(88)
t.circle(190, 30)
t.end_fill()
def mlingpkqyingyinying(): # 画皮卡丘的眼睛
"""详细流程: 1.画眼睛 2.画眼珠子"""
t.penup()
t.seth(0)
t.pensize(1)
t.pencolor("#DDA120")
t.fillcolor('#DDA120')
t.begin_fill()
t.left(220)
mlingpen(-179, -90)
t.circle(97, 60)
t.circle(69, 122)
t.circle(-120, 80)
t.circle(33, 135)
t.left(90)
t.circle(-25, 150)
t.left(175)
t.circle(-60, 140)
t.left(175)
t.circle(-60, 100)
t.right(5)
t.circle(85, 60)
t.goto(-179, -90)
t.end_fill()
t.penup()
t.penup()
t.seth(0)
mlingpen(115.87, -170.16)
t.pencolor("#eca9a9")
t.fillcolor('#eca9a9')
t.begin_fill()
t.left(45)
t.circle(300, 20)
t.circle(8, 155)
t.left(3)
t.circle(300, 20)
t.circle(9, 155)
t.goto(115.87, -170.16)
t.end_fill()
t.penup()
def mlingpkqjiao(): # 画皮卡丘的脚
"""详细流程: 1.画脚 2.画脚的线条 3.画脚的脚趾"""
mlingpen(-215, -160)
t.pensize(3)
t.pencolor("#FBD624")
t.fillcolor('#FBD624')
t.begin_fill()
t.seth(-30)
t.circle(30, 70)
t.left(20)
t.circle(-50, 150)
t.circle(10, 160)
t.circle(80, 80)
t.left(5)
t.circle(75, 110)
t.goto(-210, -160)
t.penup()
t.end_fill()
mlingpen(-149, -191)
t.pensize(3)
t.pencolor("#923E24")
t.fillcolor('#FBD624')
t.begin_fill()
t.seth(0)
t.left(40)
t.circle(148, 55)
t.right(38)
t.fd(20)
t.left(128)
t.fd(15)
t.right(88)
t.fd(15)
t.left(128)
t.fd(15)
t.right(88)
t.fd(15)
t.left(128)
t.fd(15)
t.right(45)
t.circle(130, 60)
t.circle(23, 75)
t.end_fill()
mlingpen(-149, -180)
t.pensize(3)
t.pencolor("#eca9a9")
t.fillcolor('#eca9a9')
t.begin_fill()
t.seth(0)
t.left(45)
t.circle(148, 45)
t.left(45)
t.circle(15, 110)
t.right(18)
t.circle(130, 40)
t.circle(17, 100)
t.end_fill()
def mlingpkqcap(): # 画皮卡丘的帽子
"""详细流程: 1.画帽子 2.画帽子的线条 3.画帽子的帽檐"""
mlingpen(-210, 95)
t.pensize(4)
t.pencolor("#000000")
t.fillcolor('#CD0000')
t.begin_fill()
t.seth(290)
t.circle(45, 80)
t.circle(345, 30)
t.circle(45, 90)
t.left(2)
t.fd(120)
t.left(45)
t.circle(200, 60)
t.goto(-210, 95)
t.end_fill()
t.left(175)
t.circle(-290, 50)
t.pencolor("#000000")
t.pensize(3)
t.pencolor("#000000")
t.fillcolor('#ffffff')
mlingpen(-160, 272)
t.begin_fill()
t.goto(-80, 260)
t.goto(-45, 200)
t.left(186)
t.circle(230, 41)
t.goto(-210, 200)
t.goto(-180, 270)
t.goto(-160, 272)
t.end_fill()
mlingpen(-175, 265)
t.seth(0)
t.begin_fill()
t.circle(13)
t.end_fill()
t.penup()
mlingpen(-125, 222)
t.pensize(7)
t.pencolor("#6ba65a")
t.goto(-140, 225)
t.pensize(9)
t.goto(-155, 170)
t.left(45)
t.circle(-130, 30)
t.pensize(3)
mlingpen(-205, 96)
t.pensize(3)
t.pencolor("#ffffff")
t.seth(286)
t.circle(39, 74)
t.left(9)
t.circle(331, 32)
t.circle(45, 80)
t.pensize(3)
def mlingpkqeye(): # 画皮卡丘的眼睛
"""详细流程: 1.画眼睛 2.画眼珠子"""
t.color("#000000", "#702c00")
mlingpen(-110, 24)
t.begin_fill()
t.seth(0)
t.circle(24)
t.end_fill()
mlingpen(-110, 31)
t.color("black", "black")
t.begin_fill()
t.circle(20)
t.end_fill()
t.color("white", "white")
mlingpen(-105, 53)
t.begin_fill()
t.circle(8)
t.end_fill()
t.color("#000000", "#702c00")
mlingpen(0, 62)
t.begin_fill()
t.seth(0)
t.circle(24)
t.end_fill()
mlingpen(2, 70)
t.color("black", "black")
t.begin_fill()
t.circle(20)
t.end_fill()
mlingpen(5, 92)
t.color("white", "white")
t.begin_fill()
t.circle(8)
t.penup()
t.end_fill()
t.hideturtle()
def mlingpkqcheek1(): # 画皮卡丘的脸颊
"""详细流程: 1.画脸颊 2.画脸颊的线条"""
t.color("#9E4406", "#FE2C21")
t.penup()
t.goto(-130, -50)
t.pendown()
t.begin_fill()
t.setheading(0)
t.circle(27)
t.end_fill()
t.color("#9E4406", "#FE2C21")
t.penup()
mlingpen(53, -20)
t.pendown()
t.begin_fill()
t.setheading(0)
t.circle(27)
t.end_fill()
def mlingweiba(x, y): # 画皮卡丘的尾巴
"""详细流程: 1.画尾巴 2.画尾巴的线条 3.画尾巴的尾巴尖"""
mlingpen(x, y)
t.pensize(3)
t.pencolor("#923E24")
t.fillcolor('#CD853F')
t.begin_fill()
t.seth(40)
t.fd(200)
t.seth(-80)
t.fd(150)
t.seth(210)
t.fd(150)
t.left(90)
t.fd(100)
t.right(95)
t.fd(100)
t.left(110)
t.fd(70)
t.right(110)
t.fd(80)
t.left(110)
t.fd(30)
t.right(110)
t.fd(32)
t.right(106)
t.circle(100, 25)
t.right(15)
t.circle(-300, 2)
t.seth(30)
t.fd(40)
t.left(100)
t.fd(70)
t.right(100)
t.fd(80)
t.left(100)
t.fd(46)
t.seth(66)
t.circle(200, 38)
t.right(10)
t.fd(10)
t.end_fill()
mlingpen(202, 250)
t.pensize(3)
t.pencolor("#923E24")
t.fillcolor('#FBD624')
t.begin_fill()
t.seth(220)
t.fd(120)
t.circle(75, 120)
t.left(50)
t.fd(110)
t.end_fill()
def mlingpkqcheek2(x, y, fx): # 画皮卡丘的脸颊
"""详细流程: 1.画脸颊 2.画脸颊的线条"""
mlingpen(x, y)
t.seth(fx)
t.pencolor("#840101")
t.fillcolor('#CD0000')
t.begin_fill()
n = 1.8
for i in range(120):
if 0 <= i < 30 or 60 <= i < 90:
n -= 0.05
t.left(3)
t.fd(n)
else:
n += 0.05
t.left(3)
t.fd(n)
t.end_fill()
def mlingpkqmouth(): # 画皮卡丘的嘴巴
"""详细流程: 1.画嘴巴 2.画嘴巴的线条"""
mlingpen(-60, 20)
t.pensize(3)
t.pencolor("#923E24")
t.seth(-48)
t.begin_fill()
t.circle(15, 110)
t.right(90)
t.circle(15, 110)
t.seth(0)
mlingpen(-50, 45)
t.circle(5, 180)
def mlingpkqshou1(): # 画皮卡丘的手
"""详细流程: 1.画手 2.画手的线条 3.画手的手指"""
mlingpen(-130, -30)
t.pensize(3)
t.pencolor("#923E24")
t.fillcolor('#FBD624')
t.seth(100)
t.begin_fill()
t.circle(130, 30)
t.right(100)
t.fd(10)
t.left(90)
t.fd(10)
t.right(60)
t.fd(10)
t.left(90)
t.fd(10)
t.right(30)
t.fd(10)
t.left(90)
t.fd(10)
t.right(30)
t.fd(10)
t.left(90)
t.fd(10)
t.right(50)
t.circle(70, 150)
t.end_fill()
mlingpen(-138, -67)
t.pensize(2)
t.pencolor("#DDA120")
t.fillcolor('#DDA120')
t.left(90)
t.begin_fill()
t.circle(40, 40)
t.left(10)
t.circle(-60, 70)
t.left(40)
t.circle(30, 40)
t.left(83)
t.circle(70, 110)
t.end_fill()
def mlingpkqshou2(): # 画皮卡丘的手
"""详细流程: 1.画手 2.画手的线条 3.画手的手指"""
mlingpen(0, -40)
t.pensize(3)
t.pencolor("#923E24")
t.fillcolor('#FBD624')
t.seth(200)
t.begin_fill()
t.circle(55, 90)
t.fd(10)
t.left(90)
t.fd(10)
t.right(60)
t.fd(10)
t.left(90)
t.fd(10)
t.right(90)
t.fd(10)
t.left(90)
t.fd(10)
t.right(60)
t.fd(10)
t.left(90)
t.fd(10)
t.right(50)
t.circle(60, 80)
t.end_fill()
def mlingpkqball(): # 画皮卡丘的球
"""详细流程: 1.画球 2.画球的线条 3.画球的线条"""
mlingpen(-30, -250)
t.pensize(3)
t.pencolor("#000000")
t.fillcolor('#CD0000')
t.seth(0)
t.begin_fill()
t.circle(80)
t.end_fill()
mlingpen(-110, -170)
t.seth(-90)
t.pencolor("#000000")
t.fillcolor('#ffffff')
t.begin_fill()
t.circle(80, 180)
t.end_fill()
t.pensize(12)
mlingpen(-105, -170)
t.pencolor("#000000")
t.goto(44, -170)
t.pensize(3)
mlingpen(-4, -170)
t.pencolor("#000000")
t.fillcolor('#000000')
t.begin_fill()
t.circle(28)
t.end_fill()
mlingpen(-11, -170)
t.pencolor("#000000")
t.fillcolor('#ffffff')
t.begin_fill()
t.circle(20)
t.end_fill()
mlingpen(-21, -170)
t.pencolor("#000000")
t.fillcolor('#ffffff')
t.begin_fill()
t.circle(10)
t.end_fill()
def main(): # 主函数
mlingweiba(50, 120) # 画皮卡丘的尾巴
mlingpkqface(30, 0) # 画皮卡丘的脸
mlingpkqyingyinying() # 画皮卡丘的眼睛
mlingpkqcap() # 画皮卡丘的帽子
mlingpkqcheek2(-140, -10, 300) # 画皮卡丘的脸颊
mlingpkqcheek2(60, 50, 80) # 画皮卡丘的脸颊
mlingpkqshou1() # 画皮卡丘的手
mlingpkqjiao() # 画皮卡丘的脚
mlingpkqball() # 画皮卡丘的球
mlingpkqshou2() # 画皮卡丘的手
mlingpkqmouth() # 画皮卡丘的嘴巴
mlingpkqeye() # 画皮卡丘的眼睛
t.color('#321320')
t.penup()
t.goto(260, -40)
t.pendown()
t.write("愿\n你\n拥\n有\n一\n只\n会\n永\n远\n爱\n你\n的\n皮\n卡\n丘\n", align="center", font=("黑体", 15, "normal"))
t.penup()
t.goto(290, 215)
t.pendown()
t.write("艺\n术\n设\n计\n", align="center", font=("黑体", 10, "normal"))
def txt_write(): # 文字绘制
t.up()
t.goto(-300, -300)
t.color('pink') # 设置颜色为粉色
t.write('云南大学', font=("Arial", 18, "normal"))
t.goto(-300, -330)
t.write('艺术类专业', font=("Arial", 18, "normal"))
t.goto(-300, -360)
t.write('Python原创图形设计', font=("Arial", 18, "normal"))
if __name__ == '__main__':
txt_write()
main()
t.done() # 保持窗口
t.hideturtle() # 隐藏画笔