xxxxxxxxxx
44
function setup() {
createCanvas(400, 400);
}
function draw() {
background(205, 205, 255);
// // head
// noFill();
// ellipse(200, 200, 150, 200);
// mustache
noStroke();
fill(0);
triangle(150, 250, 200, 230, 250, 250);
// soul patch
noStroke();
fill(0);
triangle(185, 280, 215, 280, 200, 255);
// goatee
noStroke();
fill(0);
triangle(175, 280, 200, 320, 225, 280);
// glasses left lens
stroke(10);
noFill();
rect(140, 175, 45, 30);
// right lens
noFill();
rect(210, 175, 45, 30);
// left eye
// noStroke();
fill(0);
ellipse(170, 195, 10, 10);
// right eye
fill(0);
ellipse(225, 195, 10, 10);
}