This is my self portrait
Portrait
function setup() {
createCanvas(300, 300);
background(81, 170, 223);
}
function draw() {
noStroke();
//sky
//fill(255, 255, 255);
//circle(30, 40, 30);
//rect(30, 25, 80, 30);
//circle(110, 40, 30);
//circle(80, 20, 30);
//rect(80, 5, 80, 30);
//circle(160, 20, 30);
//circle(200, 30, 30);
//rect(200, 15, 80, 30);
//circle(280, 30, 30);
//Ear
//80 Down
fill(244, 195, 162);
ellipse(200, 140, 10, 20);
//Head
//80 Down
rect(100, 80, 100, 120);
//Neck
//200 Down
rect(140, 200, 20, 60);
//Body
//260 Down
fill(79, 106, 230);
rect(90, 260, 120, 40);
//Top of Hair
fill(247, 227, 131);
rect(100, 80, 100, 20);
//Left Side of Hair
rect(100, 100, 10, 20);
//Right Side of Hair
rect(190, 100, 10, 20);
//Right Eye
fill(255, 255, 255);
ellipse(115, 145, 20);
//Left Eye
ellipse(175, 145, 20);
//Eyes Cont.
fill(0, 0, 0);
ellipse(112, 145, 10);
ellipse(172, 145, 10);
//Nose
fill(200, 140, 120);
triangle(140, 150, 145, 170, 135, 170);
//mouth
rect(110, 180, 30, 15);
}