xxxxxxxxxx
21
function setup() {
createCanvas(windowWidth, windowHeight);
noStroke();
}
function draw() {
background(255, 191, 213);
fill(0, 0, 0);
rect(windowWidth/5.4, windowHeight/6, 800, 1200);
ellipse(windowWidth/2, 80, 400, 500);
fill(255, 241, 219);
ellipse(windowWidth/2, windowHeight/2, 640, 800); //lower face
ellipse(windowWidth/2, windowHeight/3, 600, 600); //upper face
rect(windowWidth/2.6, windowHeight/2, 300, 800); //neck
}