paint.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #!/usr/bin/env python3
  2. """ turtle-example-suite:
  3. tdemo_paint.py
  4. A simple event-driven paint program
  5. - left mouse button moves turtle
  6. - middle mouse button changes color
  7. - right mouse button toogles betweem pen up
  8. (no line drawn when the turtle moves) and
  9. pen down (line is drawn). If pen up follows
  10. at least two pen-down moves, the polygon that
  11. includes the starting point is filled.
  12. -------------------------------------------
  13. Play around by clicking into the canvas
  14. using all three mouse buttons.
  15. -------------------------------------------
  16. To exit press STOP button
  17. -------------------------------------------
  18. """
  19. from turtle import *
  20. def switchupdown(x=0, y=0):
  21. if pen()["pendown"]:
  22. end_fill()
  23. up()
  24. else:
  25. down()
  26. begin_fill()
  27. def changecolor(x=0, y=0):
  28. global colors
  29. colors = colors[1:]+colors[:1]
  30. color(colors[0])
  31. def main():
  32. global colors
  33. shape("circle")
  34. resizemode("user")
  35. shapesize(.5)
  36. width(3)
  37. colors=["red", "green", "blue", "yellow"]
  38. color(colors[0])
  39. switchupdown()
  40. onscreenclick(goto,1)
  41. onscreenclick(changecolor,2)
  42. onscreenclick(switchupdown,3)
  43. return "EVENTLOOP"
  44. if __name__ == "__main__":
  45. msg = main()
  46. print(msg)
  47. mainloop()