import turtle as t
# 头部
def head():
t.up()
t.circle(150,40)
t.down()
t.fillcolor("#00a0de")
t.begin_fill()
t.circle(150,280)
t.end_fill()
# 围巾
def scarf():
t.fillcolor("#e70010")
t.begin_fill()
t.seth(0)
t.fd(200)
t.circle(-5,90)
t.fd(10)
t.circle(-5,90)
t.fd(207)
t.circle(-5,90)
t.fd(10)
t.circle(-5,90)
t.end_fill()
def eyes():
t.tracer(False)
a = 2.5
for i in range(120):
if 0 <= i < 30 or 60 <= i < 90:
a = a -0.05
t.fd(a)
t.left(3)
else:
a = a + 0.05
t.left(3)
t.fd(a)
t.tracer(True)
def face():
t.fd(183)
t.fillcolor('white')
t.begin_fill()
t.lt(45)
t.circle(120,100)
t.seth(90)
eyes()
t.seth(180)
t.up()
t.fd(60)
t.down()
t.seth(90)
eyes()
t.seth(180)
t.up()
t.fd(64)
t.down()
t.seth(215)
t.circle(120,100)
t.end_fill()
def nose():
t.up()
t.goto(-10,158)
t.down()
t.fillcolor("#CD0000")
t.begin_fill()
t.circle(20)
t.end_fill()
def mouth():
t.up()
t.goto(5,148)
t.down()
t.seth(270)
t.fd(100)
t.seth(0)
t.circle(120,50)
t.seth(230)
t.circle(-120,100)
t.pensize(3)
t.screensize(800,600,"#B0C4DE")
t.speed(0)
head()
scarf()
face()
nose()
mouth()
t.done()
shanzhi - 画多啦A梦1
最新推荐文章于 2024-07-04 11:27:02 发布