xxxxxxxxxx
void setup(){
size(500, 600);
smooth();
}
void draw(){
background(#F7DFC0);
strokeWeight(random(0,2));
stroke(#EA8D40);
for (int i = 20; i < 600; i += 4) {
line(i-20, 0, 500, i);
}
//right eyebrow
stroke(#B7B5B3);
strokeWeight(30);
line(0,250, 100, 250);
//left eyebrow
stroke(#B7B5B3);
strokeWeight(30);
line(200,250, 350, 250);
//right eye
strokeWeight(10);
fill(#ED1E28);
arc(0, 265, 120, 120, 0, HALF_PI);
//left eye
arc(280, 265, 120, 120, TWO_PI,TWO_PI+PI);
//mouth
//noFill();
//noStroke();
fill(#B97857);
ellipse(100, 500, 300, 100);
//text
fill(#BAE61F);
text("FOR LOOPS GOT ME FUMIN!", 20, 500);
textSize(random(60));
}