xxxxxxxxxx
51
x=175
y=75
X=60
function setup() {
createCanvas(800,450);
background("brown");
}
function draw(){
colorface="orange"
colornose="brown"
colormouth="brown"
scale(4);
//2
fill("orange");
noStroke();
ellipse(x-X,y,50,50);
//eyes
fill(255);
stroke(204,102,0);
strokeWeight(1.5);
ellipse(164-X,70,17,17);
ellipse(186-X,70,17,17);
fill( 51,26,0);
ellipse(164-X,70,5,5);
ellipse(186-X,70,5,5);
stroke(51,26,0);
strokeWeight(4);
line(162-X,60,170-X,64);
line(188-X,60,180-X,64);
//nose
fill(colornose);
noStroke();
ellipse(x-X,82,2.5,2.5);
//mouth
fill(colormouth);
noStroke();
ellipse(x-X,91,6,6);
//triangle
fill(mouseX,mouseY,50);
triangle(95,60,135,60,115,15)
}