Draw Arc : Arc : 2D PYTHON examples


PYTHON examples » 2D » Arc »

 

Draw Arc


Draw Arc



from Tkinter import *

root = Tk()
#root.option_readfile('optionDB')
root.title('Canvas')
canvas = Canvas(root, width =400, height=400)

xy = 10105100200
canvas.create_arc(xy, start=0, extent=270, fill='gray60')

canvas.pack()
root.mainloop()

           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo 2D
» Arc