// MY FAV SONG
void setup(){
size(400, 400);
background(#000000);
//face
strokeWeight(4);
stroke(248, 231, 37);
fill(#000000);
ellipse(200, 200, 200, 200);
//eye left
strokeWeight(4);
stroke(248, 231, 37);
line(150, 150, 170, 170);
line(170, 150, 150, 170);
//eye right
strokeWeight(4);
stroke(248, 231, 37);
line(230, 150, 250, 170);
line(250, 150, 230, 170);
//mouth
strokeWeight(4);
stroke(248, 231, 37);
arc(158, 250, 30, 30, 0, PI+QUARTER_PI, OPEN);
arc(200, 200, 130, 130, 0, PI, OPEN);
}
No comments:
Post a Comment