Code

size(500,100);
background(160,160,160);
smooth();
noStroke();

for (int space=0; space <5; space=space+1){
for ( int i = 90; i > 10; i = i - 15){
  fill(255 - (i*2.8));
 ellipse ( space*100 + 50, 50, i, i);
 }
}

0204 - Gradual buildup of a complex design: Using nested for{} loops

Statement:Place your previous assignment in a loop structure, so as to produce the image shown here:



Note that reproducing my exact pixel dimensions (margins, etc.) is not critical, but the basic visual structure is; I want to make sure you understand the concept of using nested iteration.

hide statement