due: Tuesday, March 21, 8pm
Review this week's lecture notes.
Create a composition using any draw commands that you
wish. Create one or two global variables and use them in some
way in your composition: perhaps to control the color, size,
or location of some things that you're drawing. Inside
the draw()
block, change the variable(s)
(incrementing or decrementing) by a small amount so that the
composition somehow changes "on its own".
Now, add one or two if
statements
using millis()
and put your variable increment or
decrement inside the if
statement(s) so that the
sketch only changes based on some timing.
Using two variables, adjust the timing so that some things change while other things pause, and then alternates so the moving things pause and the other things move?
Experiment so that this is either (a) triggered by user input (say, pressing a key), or (b) repeats in time.