I\'m trying to draw a right angle triangle with tkinter. I can\'t figure out how to do it, I can do a rectangle and then another one but I cant get the second rectangle to be a
You should use create_polygon() to draw triangle:
create_polygon()
shape2={'bounds': [20, 50, 80, 35, 80, 50], 'kind': 'tri', 'fill': True} can.create_polygon(list(shape2.values())[0],fill='white',outline='white')