project-01-selfPortrait
function setup() {
createCanvas(400, 450);
background(255);
text("p5.js vers 0.9.0 test.", 10, 15);
}
function draw() {
//background
fill(244, 203, 195);
noStroke();
rect(0, 0, 400, 400);
//shirt (bottom)
fill(0);
rect(100, 380, 200, 20);
//arms
fill(214, 179, 161);
beginShape();
vertex(108, 320);
vertex(108, 360);
vertex(85, 390);
vertex(250, 410);
vertex(240, 435);
vertex(55, 410);
vertex(50, 395);
endShape(); //left
fill(214, 179, 161);
beginShape();
vertex(300, 320);
vertex(300, 360);
vertex(300, 390);
vertex(150, 410);
vertex(155, 435);
vertex(310, 410);
vertex(320, 395);
endShape(); //right
//shirt (top)
fill(0);
rect(100, 280, 200, 100, 80, 80, 0, 0);
//neck
fill(214, 179, 161);
rect(180, 220, 40, 80, 20);
//hair
fill(51, 26, 16);
rect(120, 95, 160, 140, 80, 80, 0, 0);
//face
fill(214, 179, 161);
ellipse(200, 180, 130, 150); //background for face
fill(193, 154, 138);
ellipse(200, 230, 40, 10); //mouth
fill(51, 26, 16)
rect(157, 165, 30, 3);
rect(213, 165, 30, 3); //eyebrows
fill(255);
rect(162, 175, 25, 8, 10);
rect(213, 175, 25, 8, 10); //eyes
if (mouseX <= 200) {
noStroke();
fill(51, 26, 16);
ellipse(165, 180, 6, 6);
ellipse(215, 180, 6, 6);
}
else if (mouseX >= 200) {
noStroke();
fill(51, 26, 16);
ellipse(185, 180, 6, 6);
ellipse(235, 180, 6, 6); //pupils
}
fill(193, 154, 138);
quad(192, 205, 197, 180, 203, 180, 208, 205);
ellipse(200, 205, 16, 10);
ellipse(192, 203, 8, 8);
ellipse(208, 203, 8, 8); //nose
stroke(255);
strokeWeight(1);
line(208, 203, 208, 208); //nosering
fill(51, 26, 16);
noStroke();
ellipse(225, 220, 2, 2); //mole
fill(214, 179, 161);
ellipse(142, 195, 30, 30);
ellipse(258, 195, 30, 30); //ears
//bangs
noStroke();
fill(51, 26, 16);
arc(200, 155, 110, 120, PI, TWO_PI);
//earrings
stroke(255);
strokeWeight(1);
noFill();
ellipse(140, 230, 30, 50);
ellipse(260, 230, 30, 50);
}