CST 112
Introduction to
Computer Programming

Project #0:

In the Processing PDE, write your own code to make a static sketch that draws several objects, using as many of the following methods as you can: point(), line(), rect(), ellipse(), triangle(), etc. fill(), stroke(), etc. size(), background(), text() In your folder, use UPDATE to copy & paste your code into a .PDE file whose name begins with p0

READ (from the Textbook):

Chapters 1 & 2 (plus the Introduction) -- Static sketches Chapter 3: Dynamic sketches, using setup() & draw() Sections 7.1-7.4: Functions (with no arguments and no return type).

Project #1:

In the Processing PDE, write your own code to make a dynamic sketch where at least three objects move around, including some that are affected by the mouse position and/or clicking the mouse. In your folder, use UPDATE to copy & paste your code into a .PDE file whose name begins with p1