码迷,mamicode.com
首页 > 其他好文 > 详细

turtle画兔子

时间:2020-09-23 23:55:28      阅读:39      评论:0      收藏:0      [点我收藏+]

标签:har   loading   radius   speed   from   tle   眼睛   enc   size   

#绘制大耳朵兔

from turtle import *

speed(10)

 

#小兔的面部

color(‘pink‘)

pensize(5)

circle(radius=100)#脸

 

#眼睛

pencolor(‘black‘)

#左眼

pu()

goto(-45,92)

pd()

begin_fill()

color((0,0,0),(0,0,0.1))

circle(radius=15)

#右眼

pu()

goto(45,92)

pd()

circle(radius=15)

end_fill()

 

#鼻子

pu()

goto(20,60)

color(‘pink‘)

pd()

begin_fill()

goto(-20,60)

goto(0,45)

goto(20,60)

end_fill()

 

#嘴

goto(0,45)

goto(0,40)

seth(-90)

circle(10,120)

pu()

goto(0,40)

seth(-90)

pd()

circle(-10,120)

 

 

#小兔的耳朵

#左耳

pu()

goto(-60,180)#

seth(200)

pd()

circle(radius=350,extent=90)

goto(-98,110)

#右耳

pu()

goto(60,180)#

seth(-20)

pd()

circle(radius=-350,extent=90)

goto(98,110)

 

#小兔的身体

pu()

goto(20,3)

seth(-25)

pd()

circle(radius=-250,extent=25)

circle(radius=-135,extent=260)

seth(50)

circle(radius=-250,extent=25)

 

##小兔的胳膊

#左臂

pu()

seth(180)

goto(-30,-3)

pd()

#小短胳膊

##circle(radius=270,extent=20)

##circle(radius=20,extent=190)

circle(radius=248,extent=30)

circle(radius=29,extent=185)

#右臂

pu()

seth(0)

goto(30,-3)

pd()

circle(radius=-248,extent=30)

circle(radius=-27,extent=184)

 

##小兔的脚

##左脚

pu()

goto(-162,-260)#

pd()

seth(0)

circle(radius=41)

#右脚

pu()

goto(164,-260)

pd()
技术图片

circle(radius=41)

 

done()

  

turtle画兔子

标签:har   loading   radius   speed   from   tle   眼睛   enc   size   

原文地址:https://www.cnblogs.com/chh-123/p/13708824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!