小狮子的源代码,有不明白的可以找我( 二 )


t.pendown()
t.fillcolor('#f2ae20')
t.begin_fill()
t.circle(dir*30)
t.end_fill()
t.penup()
t.goto((0-dir) *40 85)
t.setheading(90)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(dir*17)
t.end_fill()
defnose():#画鼻子
t.penup()
t.goto(20 0)
t.setheading(90)
t.pendown()
t.fillcolor('#a2774d')
t.begin_fill()
t.circle(20)
t.end_fill()
defeye(dir):#画耳朵 , dir用来设置方向 , 左右耳对称
t.penup()
t.goto((0-dir) *30 20)
t.setheading(0)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(10)
t.end_fill()
defmouth():#画嘴巴
t.penup()
t.goto(0 0)
t.setheading(-90)
t.pendown()
t.forward(50)
t.setheading(0)
t.circle(80 30)
t.penup()
t.goto(0 -50)
t.setheading(180)
t.pendown()
t.circle(-80 30)
hair()
ears(1)
ears(-1)
face()

推荐阅读