Kevan Mann
ISTA 301 Blog 6
Processing
Part 1 - Processing's Active vs. Static Modes:
Within the Processing programming language and environment, there are two modes known as active and static. Basically it boils down to a simple, obvious distinction between the two: Static mode is when Processing creates a still image on the screen that does not move, while Active mode is when you create an image with the ability to have interaction, motion, and animations. In order to take a Processing code from Static to Active, we need to override (aka rewrite) the draw() and setup() functions.
Part 2 - Code Consideration
In order to create 100 ellipses, the first thing I changed right off the bat was the "20" in the "for" loop. This 20 was to indicate when the loop should stop looping (aka after drawing twenty ellipses), so I changed the 20 to a 100 in order to tell the loop to draw 100 ellipses. Next, I added code to both fill the ellipses with a color and make those colors random each time the for loop looped.

Part 3 - My Processing Sketch





