Tanvi Harkare – Project-01 – Face

tanviharkare_portrait

//Tanvi Harkare
//Section B
//tharkare@andrew.cmu.edu
//Project-01-Face

function setup() { 
    createCanvas(500,600);
    background(0, 180, 180);
}

function draw() {
    scale(0.8);
	//hair
	fill(0);
	rect(160, 120, 280, 500, 150);
	//ears
	fill(215, 159, 102);
	ellipse(185, 310, 40, 70);
	ellipse(415, 310, 40, 70);
	fill(215, 151, 85)
	ellipse(185, 310, 20, 48);
	ellipse(415, 310, 20, 48);
	//head
	fill(215, 159, 102);
	ellipse(300, 300, 220, 300);
	//hair part 2
	fill(0);
	ellipse(325, 180, 150, 75);
	ellipse(250, 185, 90, 65);
	strokeWeight(15);
	stroke(0);
	line(380, 190, 414, 270);
	line(210, 190, 185, 270);
	//earrings
	noStroke();
	fill(255);
	ellipse(187, 339, 6, 6);
	ellipse(413, 339, 6, 6);
	//eyebrows
	fill(0);
	beginShape();
	vertex(325, 250);
	vertex(370, 240);
	vertex(385, 255);
	vertex(370, 250);
	vertex(325, 260)
	endShape();
	beginShape()
	vertex(275, 250);
	vertex(225, 240);
	vertex(210, 255);
	vertex(225, 250);
	vertex(275, 260);
	endShape();
	//glasses
	var x1 = 345; 
	var x2 = 255;
	var y = 275;
	rectMode(RADIUS);
	noFill();
	stroke(0, 0, 139);
	strokeWeight(5);
	rect(x1, y, 35, 25, 5);
	rect(x2, y, 35, 25, 5);
	line(290, 275, 310, 275);
	rectMode(CORNER);
	noStroke();
	//eyes
	fill(255);
	ellipse(x1, y, 40, 22);
	ellipse(x2, y, 40, 22);
	fill(65, 43, 21);
	ellipse(x1, y, 20, 20);
	ellipse(x2, y, 20, 20);
	fill(0);
	ellipse(x1, y, 10, 10);
	ellipse(x2, y, 10, 10);	
	fill(255);
	ellipse(x1 + 2, y - 2, 3, 3);
	ellipse(x2 + 2, y - 2, 3, 3);
	//mouth
    fill(255);
    strokeWeight(4);
    stroke(227, 93, 106);
    arc(300, 380, 80, 50, 0, PI, CHORD);
	//nose
    noFill();
	stroke(65, 43, 21);
	strokeWeight(2);
	ellipse(300, 340, 25, 20);
	fill(215, 159, 102);
	noStroke();
	rect(280, 320, 40, 20);
}

For the self portrait, I wanted to create a portrait that was made from simple shapes. My process started by taking a photo of myself and simplifying geometries into simple shapes, especially ellipses and rectangles. I also used the photo to help determine where shapes should be placed on the face. The only shapes that were created using a series of points are the eyebrows. For the final touch, I added glasses that I sometimes wear and a set of earrings.

Tanvi Harkare – Looking Outwards – 01

A computational project that I found interesting is Treepedia, an interactive map that shows you the green canopy areas created by trees and other greenery in many cities around the world. It was created by the Senseable City Lab at MIT, consisting of 5 individuals, and is completely open-source. They have also partnered with World Economic Forum and Global Shapers Community to help bring awareness for their project. For this map to work, the Senseable City Lab created “Green View Index”, which uses Google Street Views instead of satellite images to compare green canopy coverage in different cities. Their hope is to bring a better understanding of all the climate issues Earth is going through currently, such as global warming and air pollution. Additionally, users along with local authorities will hopefully help act and bring more green landscape into major cities. Users can also compare cities side by side and see how much green canopy space they have versus another city. Although it is not available in Pittsburgh yet, some cities that are currently available include Los Angeles, Boston, NY, plus 24 other major cities. In the future, the Senseable City Lab wants to expand their map to cover more places across the globe.

Map of green canopy space in Boston, MA

I find this project interesting because of the way that they approach the issue of not having enough trees in cities to help fight environmental issues. It’s something different that I personally haven’t seen anywhere else before; an easy to understand map that conveys all the information it needs to. One of my favorite aspects of the project are the comparisons between all the different cities. This seems like a very efficient way for cities to know how well their initiatives to create more green canopy spaces are working, if any further action was to be taken. The more cities that are represented on this interactive map, I believe the more successful this project will be in the future.

Comparison of green canopy space between 4 cities

Visit the Treepedia website here.