“create_polygon tkinter” Code-Antworten

Wie zeichnet man Polygon in tkinter

from tkinter import *

root = Tk()

c = Canvas(root)
c.pack()

points = [x1,y1, x2,y2, xn,yn]
c.create_polygon(points)

root.mainloop()
Blue Badger

create_polygon tkinter

create_polygon()
create_polygon(points, fill)
create_polygon(points, fill, outline, width)
create_polygon(points, fill, outline)
create_polygon(points, y, x2, y2, x3, y3, fill)
Muddy Magpie

Ähnliche Antworten wie “create_polygon tkinter”

Fragen ähnlich wie “create_polygon tkinter”

Weitere verwandte Antworten zu “create_polygon tkinter” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen