xxxxxxxxxx
114
function setup() {
createCanvas(600, 600);
}
function draw() {
background(255, 0, 150);
for(let w=200;w<250;w+=20){
for(let s=150;s<220;s+=30){
noFill();
strokeWeight(20);
stroke(255,200,0);
curve(-30, 350, w, height/2,s, (height-100), -100, 480);
}
}
//Draw the hair in the back of the head first
for(let o=400;o>350;o-=20){
for(let c=150;c>380;c-=30){
noFill();
strokeWeight(20);
stroke(255,200,0);
curve(630, 350, o, height/2,c, (height-100), -100, 480);
}
}
//Draw the face and neck first
noStroke();
fill(200, 100, 50);
rect(260, 300,80,300)
//draw the face
fill(255, 150, 100);
ellipse(300, 250, 220, 300);
//Draw the close on top of neck
fill(0);
triangle(260, 450, 300, 600, 100, 600);
triangle(340, 450, 300, 600, 500, 600);
// Draw bezier curve for both side of the hair.
for(let i=60;i<110;i+=10){
for(let j=70;j<120;j+=10){
for(let e=170;e<300;e+=30){
for(let f=310;f<440;f+=30){
for(let g=40;g<90;g+=10){
for(let q=420;q<510;q+=20){
for(let r=430;r>300;r-=30){
for(let p=560;p>510;p-=10){
noFill();
stroke(30, 10, 10);
strokeWeight(20);
bezier(300, i, 100, j, e, f, g, q);
bezier(300, i, 500, j, 430, f, 560, q);
}
}
}
}
}
}
}
}
//Draw the eyes
noStroke();
fill(0);
ellipse(250, 230, 50, 80);
// Style the arc. // Update start and stop angles.
fill(0, 200, 255);
let biteSize1 = PI / 16;
let startAngle1 = biteSize1 * sin(frameCount * 0.1) + biteSize1;
let endAngle1 = TWO_PI - startAngle1;
// Draw the arc.
arc(250, 230,50, 80, startAngle1, endAngle1, PI);
//Draw the second eye
fill(0);
ellipse(350, 230, 50, 80);
// Style the arc. // Update start and stop angles.
fill(0, 200, 255);
let biteSize2 = PI / 16;
let startAngle2 = biteSize2 * sin(frameCount * 0.1) + biteSize2;
let endAngle2 = TWO_PI - startAngle2;
// Draw the arc.
arc(350, 230,50, 80, startAngle2, endAngle2, PI);
// Draw the mouth
//Draw a black spline curve.
noFill();
strokeWeight(10);
stroke(0);
curve(250, 310, 300, 350, 340, 320, 290, 200);
//Draw the blush
fill(300,0,100)
noStroke()
ellipse(230,280,50,30);
ellipse(370,280,50,30);
//Draw my glasses
fill(200,150)
rect(190,200,100,80,10)
rect(310,200,100,80,10);
//Draw the eye brow
// OPEN fill mode.
fill(30, 10, 10)
arc(250, 180, 50, 20,PI, 2*PI , OPEN);
arc(350, 180, 50, 20,PI, 2*PI , OPEN);
}