xxxxxxxxxx
51
function setup() {
createCanvas(400, 400);
}
function draw() {
//band
background(0,0,255);
//face
fill(80,200,50);
// fill(255, 204, 153);
noStroke();
ellipse(200,200,170,200);
//background
fill(220, 200);
rect(0, 0, 400,150);
rect(0, 190, 400, 400-190);
//lips
fill(200, 20, 20);
ellipse(200, 250, 40, 10);
//nose
fill(80,190,50);
triangle(185, 225, 215, 225, 200, 180);
//nostrils
fill(0);
ellipse(192, 220, 5, 5);
ellipse(208, 220, 5, 5);
//eyes
fill(0);
ellipse(170, 170, 40, 20);
ellipse(230, 170, 40, 20);
fill(255);
ellipse(170, 170, 5, 10);
ellipse(230, 170, 5, 10);
//bubbles
fill(80,190,50, 150);
ellipse(100,350,50,50);
fill(80,190,50, 150);
ellipse(350,350,150,150);
}