tateportrait
function setup() {
createCanvas(1000, 1000);
background(220);
text("p5.js vers 0.9.0 test.", 10, 15);
}
function draw() {
background(164,138,187);
//shirt
noStroke();
fill(58,101,244);
ellipse(500,1000,800, 600);
//collar
noStroke();
fill(160,160,160);
rect(450,700,100,450);
//neck
noStroke();
fill(161,118,72);
ellipse(500,700,300,350);
//left ear
noStroke();
fill(216,160,107);
ellipse(250,500,75,150);
//right ear
noStroke();
fill(216,160,107);
ellipse(750,500,75,150);
//beard
noStroke();
fill(184,137,86);
ellipse(500,500,500,600);
//hair
noStroke();
fill(103,78,54);
ellipse(500,400,500,400);
//face
noStroke();
fill(216,160,107);
ellipse(500,475,475,300);
//nose
noStroke();
fill(196,143,93);
rect(475,480,50,125);
//lips
noStroke();
fill(185,94,75);
ellipse(500,670,140,40);
//left eybrow
noStroke();
fill(103,78,54);
rect(360,445,100,25);
//right eybrow
noStroke();
fill(103,78,54);
rect(540,445,100,25);
//left eye
noStroke();
fill(255,255,255);
ellipse(410,505,65,23);
//right eye
noStroke();
fill(255,255,255);
ellipse(590,505,65,23);
//left pupil
noStroke();
fill(58,101,244);
ellipse(410,505,23,23);
//right pupil
noStroke();
fill(58,101,244);
ellipse(590,505,23,23);
}