xxxxxxxxxx
void setup() {
size(600,600);
background(255);
}
void draw() {
// Tiffany Yie 10/3/17
// OBJ: Use variables and conditional logic to make code easier to understand and effecient.
noFill();
for(int a = 0; a < 600; a = a+1){
for(int b = 50; b < 600; b = b+1){
ellipse(a,b,50,50);
}
}
}