Soo-Ji Lee
int counter = 0;
int drawing_number = 0;
void setup() {
int a = 700;
size(a,a);
}
void draw(){
counter += 1;
int csize = width/2;
float suzie_color = random(0,999);
color cl = color(200,200,200);
color line_color = color (155,suzie_color/2,155);
background(cl);
translate(random(-150,150),random(-150,150));
ellipseMode(CENTER);
stroke(line_color);
strokeWeight(10);
fill(225);
ellipse(csize,csize,csize,csize);
fill(cl);
ellipse(width - csize/1.35, csize/1.15, csize/3, csize/3);
ellipse(csize/1.25, csize/2.0, csize/10, csize/10);
ellipse(width - csize/1.25, csize/2.0, csize/10, csize/10);
ellipse(csize/1.35, csize/1.15, csize/4, csize/6);
arc(csize, csize*1.1, csize/1, csize/1.9, 0, PI, CLOSE);
if(counter == 120){
drawing_number += 1;
counter = 0;
save("drawing"+drawing_number+".jpg");
if(drawing_number == 10){
exit();
}
}
}