/*
Noni Shelton
Section B 10:30am
nshelton@andrew.cmu.edu
Face 01
*/
function setup() {
createCanvas(600, 600);
background(200);
//skin tone
fill(51)
rect(100,100,100,420,300);
fill(1);
rect(53,53,500,550, 210);
fill(90,35,5);
ellipse(300,300,330,430);
//eyes
fill(12);
ellipse(357,250,30,30);
ellipse(237,250,30,30);
//right side of glasses
stroke(181,0,255);
strokeWeight(10);
noLoop();
noFill();
rect(196,220,70,70,10);
//left side of glasses
rect(326,220,70,70,10);
//bridge to glasses
fill(255,255,33);
line(270,250,326,250);
//shirt
noStroke();
rect(211,520,180,170,50);
fill(73,255,33);
point(300,300);
//mouth
noStroke();
fill('red');
arc(330,410,110,80,0,PI);
fill(255);
rect(284,410,94,12);
//nose
noStroke();
fill(130,35,5);
rect(280,295,40,85,79);
//bangs
fill(1);
ellipse(350,127,200,145);
//ear
fill(90,35,5);
ellipse(150,345,70,50);
ellipse(450,345,70,50);
//earrings
fill(255);
arc(130,360,20,20,0,PI);
arc(470,360,20,20,0,PI);
}
function draw() {
}
Author: Noni
Noni Shelton-LookingOutwards-01
Pinterest shows an example of a man walking and how the aperture holes reflect his movement.
This Aperture project was created by interactive designers, Gunner Green and Frederic Eyl. It is essentially the visual aftermath of having tiny light sensitive holes become larger with less light and smaller with more. Thus, it is an interactive piece as silhouettes and shapes form from those who pass by. Although this particular design is very unique, the programming and technology behind the light exposure itself is easily accessible. Practical uses of aperture are extremely popular in photography and could have easily served as inspiration for the creators of the project. I really appreciate this project as a whole. This was an extremely laborious project to create, and I thought the dedication to this type of medium was impressive. They took one function of something and then gave it a completely different and interactive use as modern art. I also think it is admirable to use a more science based tool and turn it into an exhibit. This could also point to a new artistic idea of using aperture as a medium, which could change the face of contemporary art.