你如何改变乌龟的颜色,而不是笔?我希望乌龟在屏幕上绘制白色,但如果我将颜色更改为“白色”,我就再也看不到乌龟了。有没有类似的turtle.turtlecolor
东西?
问问题
568 次
2 回答
4
我们可以使用用户光标定义函数将光标的颜色(轮廓和填充)与光标绘制的颜色(轮廓和填充)断开:
from turtle import Screen, Shape, Turtle
screen = Screen()
screen.bgcolor('black')
turtle = Turtle()
turtle.shape("turtle")
polygon = turtle.get_shapepoly()
fixed_color_turtle = Shape("compound")
fixed_color_turtle.addcomponent(polygon, "orange", "blue")
screen.register_shape('fixed', fixed_color_turtle)
turtle.shape('fixed')
turtle.color('white')
turtle.circle(150)
screen.exitonclick()
这个海龟光标是橙色的,带有蓝色轮廓,但它画了一条白线:
于 2020-04-28T05:02:26.297 回答
1
肯定有!
turtle.shape("turtle")
turtle.fillcolor("red")
现在你得到了一只红乌龟。
于 2020-04-28T01:37:51.943 回答