gpt4 book ai didi

python - 如何在保持 turtle 形的情况下隐藏 turtle 箭?

转载 作者:行者123 更新时间:2023-12-05 04:38:41 26 4
gpt4 key购买 nike

我用黑色 turtle 创建了一个形状(白色矩形)而不是一条线!然后我移动屏幕底部的白色形状以创建一个必须从左向右移动的桨。我必须保持形状但删除黑色箭头。怎么办?

enter image description here

from turtle import Turtle


class Paddle(Turtle):
def __init__(self):
super().__init__()
self.shape("square") # what i want to keep to move it from left to right
self.penup()
self.shapesize(stretch_wid=1, stretch_len=5)
self.color("white")
self.goto(x=0, y=-260)

# I create my turtle, now I can move the shape, the white rectangle.

然后我从左向右移动 turtle 形状。一般来说,我将背景留为黑色,我们看不到 turtle (而是形状),但在这里我融化得更轻,所以我们看到屏幕中央的黑色箭头。

最佳答案

hideturtle() 用于制作一个圆(例如)而不显示 turtle 箭头

可以看到这个来源:

https://www.geeksforgeeks.org/turtle-hideturtle-function-in-python/

关于python - 如何在保持 turtle 形的情况下隐藏 turtle 箭?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70546689/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com