Project-02-Variable-Face

sketch

//Janet Lee
//Section C
//janetl2@andrew.cmu.edu
//Assignment-02
var eyeSize = 20;
var faceWidth = 100;
var faceHeight = 150;
var noseX = 10;
var noseY =20;
var mouthX = 15;
var mouthY = 5;
var eyebrowX= 15;
var eyebrowY =5;

function setup() {
    createCanvas(640, 480);
}

function draw() {
    background('#FCA49F');
    noStroke();
    fill ('#FCC3B2');
    //face
    ellipse(width / 2, height / 2, faceWidth,  faceHeight);
    //eyes
    var eyeLX = width / 2 - faceWidth * 0.25;
    var eyeRX = width / 2 + faceWidth * 0.25;
    fill (0);
    ellipse(eyeLX, height / 2, eyeSize, eyeSize);
    ellipse(eyeRX, height / 2, eyeSize, eyeSize);
    //nose
    fill ('#A87688');
    ellipse (width / 2,height / 2,noseX,noseY);
    //mouth
    fill (0);
    ellipse (width /2 ,280,mouthX,mouthY);
    //eyebrow
    fill(0);
    ellipse (eyeLX,220 ,eyebrowX,eyebrowY);
    ellipse (eyeRX, 220, eyebrowX,eyebrowY);



}

function mousePressed() {
    // when the user clicks, these variables are reassigned
    // to random values within specified ranges. For example,
    // 'faceWidth' gets a random value between 75 and 150.
    faceWidth = random(75, 150);
    faceHeight = random(100, 200);
    eyeSize = random(10, 30);
    noseX = random (5,15);
    noseY = random (10,30);
    mouthX = random(5,20);
    mouthY = random (3,10);
}

Janet Lee – Looking Outwards – 02

Interactive experiences at the human scale: Making CenterStage with Andrew Bell and Lutz Vogel

Samsung CenterStage is an interactive studio that displays 64 appliance on a screen that is scaled according to the human size. It was created by Andrew Bell and Lutz Vogel and created in March 2015. What I admire about this work is that it allows buyers to virtually interact and experience what the appliance would be like as if it is right in front of you. This project is admiring because people can see the different kinds of appliances at once and they can also virtually try them out through a screen.The radial interface also made it to the point where it is easy to use and navigate. The algorithm of this project is user interaction and experience. The creators artistic sensibilities are showed in how they describe the fluorescent smell of laundry by displaying flower petals swirling around the laundry machine and draw the effects of each appliances in a symbolic way as if the users can experience what the appliances can do.

Project-01-Face

janet-portrait

//Janet Lee
//Section C
//janetl2@andrew.cmu.edu
//Self Portrait




function setup() {
  createCanvas (600,600);
  background ("beige");


}

function draw() {
  noStroke()
  //hair
  fill ("gold");
  ellipse (300,300,490,550);
  //head
  fill (255,214,160);
  ellipse (300,250,400);
  //left eye
  fill(0);
  ellipse (200,300,50);
  //right eye
  fill(0);
  ellipse (400,300,50);
  //bangs
 push();
  fill ("gold");
  rotate (75);
  ellipse (150,250,400,210);
  pop();

  //right eyebrow
  fill(0);
  stroke (0);
  strokeWeight (3);
  ellipse(410,250,60,10);

  //mouth
  noFill();
  stroke (0);
  strokeWeight(3);
  arc(300,380,30,10,0,PI);





}

Janet Lee- Looking Outwards-01

As I was living in Korea, I came across this artist called Nam June Paik. His artwork and his philosophy “touch my art like it’s your toy” caught my attention. He is well known for his video/media art. Out of his whole projects, I liked “Tv Garden” which was produced by about thirty televisions lying by tropical leaves. It was interesting to me that he combined television and nature without a definite meaning to it. I do feel like this project would have been more effective if the tv screens included a lot more scenes of nature. Though, I also feel like he intentionally excluded a lot of nature scenes to make people question about his work. Paik once wrote that he wanted “to shape the tv screen as precisely as Leonardo and as freely as Picasso”. His purpose of his work was to not conform his work in a traditional way but to freely express himself.

11-TVGarden

https://www.arts.gov/photos/nam-june-paik-artist-who-invented-video-art

http://www.medienkunstnetz.de/works/tv-garden/images/2/

http://www.variablemedia.net/f/introduction/case_paik_tvgar.html