Skip to content

Instantly share code, notes, and snippets.

@seyyah
Created December 24, 2010 09:40
Show Gist options
  • Save seyyah/754066 to your computer and use it in GitHub Desktop.
Save seyyah/754066 to your computer and use it in GitHub Desktop.
from graphics import *
def main():
win = GraphWin("My Circle", 100, 100)
c = Circle(Point(50,50), 10)
c.draw(win)
win.getMouse() # Pause to view result
win.close() # Close window when done
main()
@seyyah
Copy link
Author

seyyah commented Dec 24, 2010

Şu linkte Ingilizce anlatımlı örnekler mevcut: http://www.difranco.net/cop1000/Outlines/graphics.htm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment