function setup() {
createCanvas(400, 400);
}
function draw() {
background(210);
strokeWeight(0);
fill(213, 180, 118);
rect(160, 200, 120, 170);
strokeWeight(0);
fill(222, 184, 135);
rect(110, 35, 60, 300);
strokeWeight(0);
fill(139, 69, 19);
rect(50, 50, 250, 90);
strokeWeight(0);
fill(210, 180, 140);
rect(width / 6, height / 6, 200, 200);
strokeWeight(0);
fill(205, 133, 63);
rect(200, 60, 40, 90);
strokeWeight(0);
fill(139, 69, 19);
rect(160, 200, 100, 10);
strokeWeight(0);
fill(255, 222, 173);
rect(57, 150, 30, 60);
strokeWeight(0);
fill(255, 222, 173);
rect(290, 57, 30, 60);
strokeWeight(0);
fill(0);
ellipse(160, 55, 50, 80);
strokeWeight(0);
fill(0);
ellipse(260, 90, 30, 24);
strokeWeight(0);
fill(218, 165, 32);
rect(40, 100, 60, 10);
strokeWeight(0);
fill(222, 184, 135);
rect(190, 130, 15, 15);
}
When tasked with drawing a self portrait of myself i decided to use a cubistic aproach. Although i could use other geometries to make a representation of my face, i don’t believe my skills would be able to create a realistic representation of me. Therefore i chose an abstract way of representation.