您所在的位置:首页 - 生活 - 正文生活

画皮卡丘教程

丘娉
丘娉 04-25 【生活】 361人已围观

摘要```pythonimportturtle#设置画布和画笔screen=turtle.Screen()screen.setup(500,500)screen.title("Pikachu")t=tur

```python

import turtle

设置画布和画笔

screen = turtle.Screen()

screen.setup(500, 500)

screen.title("Pikachu")

t = turtle.Turtle()

t.speed(5)

画圆

def draw_circle(color, radius, x, y):

t.penup()

t.fillcolor(color)

t.goto(x, y)

t.pendown()

t.begin_fill()

t.circle(radius)

t.end_fill()

画矩形

def draw_rectangle(color, width, height, x, y):

t.penup()

t.fillcolor(color)

t.goto(x, y)

t.pendown()

t.begin_fill()

for _ in range(2):

t.forward(width)

t.left(90)

t.forward(height)

t.left(90)

t.end_fill()

画皮卡丘的耳朵

def draw_ear(color, x, y, heading):

t.penup()

t.fillcolor(color)

t.goto(x, y)

t.setheading(heading)

t.pendown()

t.begin_fill()

t.circle(60, 85)

t.right(90)

t.forward(20)

t.circle(60, 85)

t.end_fill()

画皮卡丘的脸

draw_circle('yellow', 100, 0, 120)

画皮卡丘的眼睛

draw_circle('white', 15, 35, 35)

draw_circle('white', 15, 35, 35)

draw_circle('black', 7, 35, 35)

draw_circle('black', 7, 35, 35)

画皮卡丘的鼻子

draw_circle('black', 10, 0, 10)

画皮卡丘的嘴巴

t.penup()

t.goto(30, 5)

t.pendown()

t.right(25)

t.circle(35, 50)

画皮卡丘的脸颊

draw_circle('red', 30, 55, 30)

draw_circle('red', 30, 55, 30)

画皮卡丘的耳朵

draw_ear('yellow', 35, 120, 160)

draw_ear('yellow', 65, 120, 90)

隐藏画笔

t.hideturtle()

完成

turtle.done()

```

Tags: 十大童年恐怖动画片 二位由木人 妖精的尾巴中文字幕 进击的巨人亚妮

最近发表

icp沪ICP备2023033053号-25
取消
微信二维码
支付宝二维码

目录[+]