Recitation 007

PART I: Code: void setup(){   size(800,800); } void draw(){   background(0);   for (int x=0;x<width;x+=55){     for(int y=0;y<height;y+=55){       color e=color(random(0,255));        color m=color(random(0,255),random(0,255),random(0,255));     face(x,y,e,m);   }   } }  void face(float x, float y, color eyes, color mouth){   fill(#F5EF31);   circle(x,y,50);   //stroke(#F5EF31);   //line(x,y-60,x,y+60);   //line(x-50,y-50,x+50,y+50);   fill(eyes);   circle(x-10,y-10,10);   circle(x+10,y-10,10);      fill(mouth);    arc(x, y+10, 16, 16, 0, PI);    //ellipse(x,y+10,30,10); }