我有一个程序,假设在 x,y 处创建一个具有设定高度和设定宽度的三角形。这是我拥有的代码,但如果宽度真的很小,它创建的三角形有时会被弄乱。如何用我想要的任何数字作为宽度和高度制作一个完美的三角形?
进口龟
def triangleBuild(width,height):
turtle.forward(width)
turtle.left(120)
turtle.forward(height)
turtle.left(120)
turtle.forward(height)
def xYPostion(x,y,宽度,高度):
turtle.penup()
turtle.goto(x,y)
turtle.pendown()
triangleBuild(width,height)