ECS 10 Graphics Module

We are using a slightly modified version of the LiveWires beginners graphics module. This page describes the functions we will need from this module. Remember you can see information on any function in IDLE using the help command, for instance, help(begin_graphics).

On a Mac, it seems like the graphics window does not close properly when the program is run in IDLE. You can still write your program in IDLE, and it will be helpful for debugging (you can see where it crashes, etc), but the graphics window will only close properly when the program is run from a terminal (open a terminal window, go to the folder where the program is, and type, for instance, "python stars.py").

Handling the graphics window

Defining graphics objects

Moving objects

Mouse functions

Under Construction