Code
size(390, 350);
background(121,203,227);
smooth ();
fill (172, 121, 227);
// overlapping circles from 12 to 1
for (int i=12; i>0; i--){
ellipse(i*30, 150, 40,40);
}
0108 - For Loops VI: Line Series
Statement:Use a for structure which decrements its counting variable, to create a series of overlapping circles which are drawn from right to left. Your design will be correct if the leftmost circle was drawn last (on top). An example similar to this was given in class.
hide statement