Shannon Case LookingOutwards-01

light instillation

 

Commissioned by the Bring To Light Festival NYC, this instillation (called “The Company”) is a sound reactive light installation by Nocte, in collaboration with designer Roland Ellis. 76 tungsten lamps are suspended to form an arch, and when music is played the lamps react to the sound. Each lamp is digitally controlled, which allows these animations to be created by the live audio. The piece is intended to bring the atmosphere of the architectural history of the building, which is it’s legacy as an industrial environment. My favorite thing about this instillation is the beautiful calming atmosphere it provides. I think that video is absolutely the most stunning documentation for this piece, as it provides the viewer much more insight into the way that the piece works, as well as the general ambiance of the instillation. I really admire that they were able to use advanced technology to create a piece that is simply beautiful, and appears to be magical. It’s not easy to guess how it works, and that mystery is part of the beauty of the piece. I think one thing they could improve on is the documentation, I wish they had more than one video of the piece, and documented how the atmosphere changed depending on what music was played.

Shannon Case Project-01-Face

Shannon’s Self Portrait

//Shannon Case
//scase@andrew.cmu.edu
//section D
//this program creates my self portrait

function setup() {
    createCanvas(600,600);
    background(random(0,255),random(0,255),random(0,255)); 
    //creates background that changes each time the page loads
    
}

function draw() {
	noStroke(); // makes sure the shapes have no outline
	fill('tan');
	rect(280,550,20,60);
	rect(320,550,20,60); //creates my legs

	fill('brown');
	rect(200,150,200,200); //creates hair
    ellipse(300,100,215);

	fill('red');
    triangle(100,550,300,150,500,550); //creates red dress

	fill('tan');
	ellipse(300,150,200); //creates my head

	ellipseMode(RADIUS);  // Set ellipseMode to RADIUS
    fill(255);  // Set fill to white
    ellipse(275,130,15);  //

    ellipseMode(CENTER);  // Set ellipseMode to CENTER
    fill('blue');  // Set fill to blue
    ellipse(275,130,15);

    ellipseMode(RADIUS);  // Set ellipseMode to RADIUS
    fill(255);  // Set fill to white
    ellipse(325,130,15);  //

    ellipseMode(CENTER);  // Set ellipseMode to CENTER
    fill('blue');  // Set fill to blue
    ellipse(325,130,15);

    //^^ creates my eyes

	noFill();
	stroke(0);
	curve(225,130,275,200, 325, 200, 375,130); //creates smily face
 
    
}

For this project I played around with shapes, layering them on top of each other in order to create a stylized figure of myself. I chose to portray myself in my favorite red dress, and smiling because it makes me happy to try coding!!