乘号 发表于 2020-3-20 17:45:33

用Python画一箭穿心(2)

from turtleimport *

color('black','red')
begin_fill()

penup()
goto (50,50)
pendown()

right(45)
goto(100,0)
left(90)
fd(120)
circle(50,225)

penup()
goto(0,0)
pendown()

left(135)
fd(120)
circle(50,225)
seth(90)
circle(50,225)

fd(121)
end_fill()
left(56)

penup()
goto(-210,40)
pendown()
goto(0,80)
penup()
goto(160,110)
pendown()
goto(330,140)

done()








效果图:




页: [1]
查看完整版本: 用Python画一箭穿心(2)