xxxxxxxxxx
19
function setup() {
createCanvas(1000, 1000);
}
function draw() {
background(220);
noFill();
stroke('aqua');
strokeWeight(10);
curve (250, 250, 270, 300, 300, 700, 750, 750); //curve for side of face
curve (250, 250, 270, 300, 600, 300, 300, 950); //curve for top of head
curve (250, 250, 600, 600, 300, 700, 250, 250); //curve for side of face
curve (250, 250, 600, 300, 600, 700, 700, 950); //curve for chin
curve (250, 450, 300, 400, 400, 400, 200, 500); //curve for right eyebrow
curve (300, 500, 500, 400, 600, 400, 300, 500); //curve for left eyebrow
circle (350, 450, 20); //right eye
circle (550, 450, 20); //left eye
}