Week 1: Self Portrait
Concept: Drawing a portrait that looks professional, wearing a suit.
Section I am proud of: Drawing the Suit of the Portrait.
// Draw suit
fill(30); // Dark gray suit color
beginShape(); // Left lapel
vertex(140, 340);
vertex(200, 280);
vertex(180, 340);
endShape(CLOSE);
// Draw suit
fill(30); // Dark gray suit color
beginShape(); // Left lapel
vertex(140, 340);
vertex(200, 280);
vertex(180, 340);
endShape(CLOSE);
// Draw suit fill(30); // Dark gray suit color beginShape(); // Left lapel vertex(140, 340); vertex(200, 280); vertex(180, 340); endShape(CLOSE);
New things I have learned drawing the suit:
//Vertex
//Vertex
//Vertex
Embedded sketch
Reflection: The hadest part was to start the project and aligning the dots and vertex well. So for next one, I will learn more on the coordinates system and have a paper on my hand before drawing it.