xxxxxxxxxx
37
function setup() {
createCanvas(600,600);
}
function draw() {
background(200,210,180);
noFill();
strokeWeight(5);
stroke(0);
//jar
curve(300, 0, 150, 350, 300, 550, 500, 280);
curve(300, 0, 450, 350, 300, 550, 100, 280);
//hair
curve(300, 800, 100, 250, 320, 80, 300, 800);
curve(300, 500, 500, 200, 320, 80, 300, 700);
curve(200, 400, 120, 220, 80, 600, 100, 300);
curve(300, 500, 480, 170, 520, 600, 300, 700);
//hair detail
curve(300, 450, 220, 220, 320, 180, 300, 500);
curve(100, 300, 250, 177, 300, 200, 300, 200);
curve(300, -200, 220, 220, 170, 370, 300, 500);
curve(300, 150, 400, 200, 320, 180, 300, 500);
curve(300, 200, 400, 200, 430, 370, 300, 500);
//eyebrow
strokeWeight(8);
curve(300, 500, 330, 280, 430, 280 , 300, 300);
curve(300, 500, 270, 280, 170, 280 , 300, 300);
//nose
curve(300, 200, 300, 330, 300, 430, -200, 300);
//mouth
curve(300, 400 , 270, 480, 330, 480, 400, 300);
//eyes
strokeWeight(15);
point(230, 300);
point(370, 300);
}