Starting with Processing
-Download Processing and Processing Development Environment (PDE) -Reference http://www.processing.org/reference/index.html -Libraries Extending Processing beyond graphics and image, libraries enable audio, video and communication with other devices. http://www.processing.org/reference/libraries/index.html Let's Start with Processing! size() Defines the dimension of the display window Reference: http://www.processing.org/reference/size_.html size(100,100); Exercise1: Change the size of your window. setup() Called once when the program is started. Reference:http://processing.org/reference/setup_.html

