我想使用python绘制三角形的形状。我已经绘制了圆形,但我无法绘制三角形。有人可以帮我这个吗?
这是我的圆圈代码,我想为三角形使用相同类型的代码。
import graphics
import random
win=graphics.GraphWin("Exercise 7",500,500)
win.setBackground("white")
for i in range(1000):
x=random.randint(0,500)
y=random.randint(0,500)
z=random.randint(1,100)
point = graphics.Point(x,y)
circle=graphics.Circle(point,z)
colour=graphics.color_rgb(random.randint(0,255),
random.randint(0,255),
random.randint(0,255))
circle.setFill(colour)
circle.draw(win)
win.getMouse()
win.close()
谢谢!
答案 0 :(得分:3)
这应创建一个带有随机顶点(角)的三角形:
vertices = []
for i in range(3): # Do this 3 times
x = random.randint(0, 500) # Create a random x value
y = random.randint(0, 500) # Create a random y value
vertices.append(graphics.Point(x, y)) # Add the (x, y) point to the vertices
triangle = graphics.Polygon(vertices) # Create the triangle
triangle.setFill(colour)
triangle.draw(win)
我希望这会有所帮助。