xxxxxxxxxx
63
function setup() {
createCanvas(750, 750);
}
function draw() {
background('#4BAAC8');
//beach
fill('#D8E6AD')
rect(0, 500, 750, 250);
//sun
fill('#D8E6AD')
circle(100, 100, 70);
//hair
fill('black');
ellipse(375, 470, 300, 500);
//body
fill(127, 0, 0);
ellipse(375, 700, 300, 500);
//HEAD
fill(202, 162, 121);
ellipse(375, 350, 200, 250);
//mouth
noFill();
stroke(0);
line(340, 400, 410, 400);
//bangs
fill('black');
noStroke();
ellipse(375, 255, 145, 60);
//eyes
fill(90, 72, 54);
ellipse(430, 330, 60, 60); // right eye
ellipse(330, 330, 60, 60); // left eye
//pupils
fill('white');
noStroke();
ellipse(450, 330, 20, 25); // right pupil
ellipse(350, 330, 20, 25); // left pupil
// Draw blush if mouse was pressed
if (mouseIsPressed) {
fill('pink');
ellipse(460, 400, 40, 40); // blush on the right cheek
ellipse(300, 400, 40, 40); // blush on the left cheek
}
}