xxxxxxxxxx
50
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255, 222, 241);
//body
stroke (0)
strokeWeight (1)
fill (31, 28, 122);
triangle(200,200,100,400,300,400);
//face
fill (255, 239, 214);
ellipse (200,150,150,170);
//eyes
fill (255);
ellipse (165,150,10,20);
ellipse (230,150,10,20);
//eyeballs
fill (0);
circle (165,155,8);
circle (230,155,8);
//nose
noFill();
triangle(185,180,215,180,200,150);
//mouth
stroke (255, 173, 236);
strokeWeight (5);
line (175,200,230,190);
//arm
stroke (0);
strokeWeight (20);
line (50,250,150,300);
//eyebrows
stroke (0);
strokeWeight (0.5)
fill (92, 61, 21);
ellipse (160,120,40,10);
ellipse (240,120,40,10);
}