Jacky Tian-Looking Outwards 01

Looking Outwards 01 Bund Finance Center

Front view of Bund Finance Center in Shanghai, China.

In my hometown Shanghai, China, a new mixed-use complex called the Bund Finance Center has just finished its last construction phase. Designed by Norman Foster’s Architecture Firm and Thomas Heatherwick’s design studio, The Bund Finance Center becomes a new iconic figure for The Bund in Shanghai.

The goal of this building is combining elements from both traditional chinese theatre and the most advanced digital technology. This three stories tall building contains a curtain-like facade of bronze tubes that resonant the shape of bamboo. These bronze tubes are organized in three layers, creating a semi-transparent screen for the building. The facade, which many architects described it as “a moving veil”, can adapt and transform based on the use of the building, therefore, exposes the stage and balcony to the views towards Pudong.

As an architecture major student, I was inspired by the connection between architecture and digital technology. With the help of technology, this building is not static anymore. It becomes a living machine in which it can achieve functionality and aesthetic at the same time.

Links to original sources:

https://www.homedit.com/building-with-dynamic-facades/

Jacky’s face (project 1)

This self portrait was first designed on illustrator by using some basic shapes and geometries. Therefore, I can easily map out on a 600 x 600 canvas with coordinates and sizes.

yinjiet-portrait

//Jacky Tian
//Section B
//yinjiet@andrew.cmu.edu
//project-01
function setup() {
    createCanvas(600, 600);
    background(220);
}

function draw() {
	strokeWeight(1);
	stroke(0, 0, 0);
	fill(236, 212, 190);
	ellipse(175, 320, 10, 50);
	ellipse(425, 320, 10, 50);

	strokeWeight(0);
	stroke(0, 0, 0);
	fill(236, 212, 190);
	rect(270, 460, 60, 60),
	
	strokeWeight(0);
	stroke(0, 0, 0);
	fill(236, 212, 190);
	ellipse(300, 320, 250, 300);

	fill(0)
	quad(175, 270, 280, 270, 308, 160, 210, 185);
	quad(320, 270, 425, 270, 390, 185, 292, 160);
	
	strokeWeight(4);
	stroke(212, 175, 55);
	fill(255);
	rect(200, 275, 80, 60);
	rect(320, 275, 80, 60);
	line(280, 300, 320, 300);
	line(175, 285, 200, 300);
	line(425, 285, 400, 300);

	strokeWeight(1);
	stroke(0, 0, 0);
	fill(236, 212, 190);
	triangle(300, 350, 290, 375, 310, 375);

	strokeWeight(1);
	stroke(0, 0, 0);
	noFill();
	arc(300, 415, 80, 80, 0, PI + QUARTER_PI, OPEN);

	stroke(0, 0, 0);
	fill(0, 0, 0);
	quad(200, 520, 400, 520, 500, 600, 100, 600);

	stroke(0, 0, 0);
	fill(51);
	rect(200, 580, 80, 100);
	
}