Interactive Authoring (Iteration)

screen-shot-2016-09-15-at-12-53-19-pm

Code:

int cY = 10;
void setup() {
size(600, 600);
smooth();
}

void draw() {
for (int i = 0; i < 30; i ++)
ellipse(i*20+10, cY, 20, 20);
if (cY < 580) cY = cY + 20;
}

This entry was posted in Non-Timebased and tagged , . Bookmark the permalink.

Leave a comment