Han Yu Project 2 Variable Face

sketch

// Han Yu
// Section D
// hyu1@andrew.cmu.edu
// Project-02

var facew = 200
var faceh = 200
var color1 = 219 
var color2 = 255
var color3 = 238
var eyesize = 5
var pupildiff = 40
var mouthopen = 10

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

function draw() {
	background(219,255,238);
	//bubbles
	noFill();
	ellipse(500,80,180,120);
	ellipse(480,180,50,35);
	//word
    textSize(35);
    strokeWeight(4);
	text("wut?",470,100);
	//face
	fill(219,255,238);
	stroke(249,192,180);
	strokeWeight(6);
	rect(width*0.2,height*0.15,facew,faceh,10);
	//body
	rect(width*0.4,height*0.15+faceh,facew*0.7,300,10);
	//book
	fill(color1,color2,color3);
	rect(width*0.4*0.8,(height*0.15+faceh)*1.3,facew*0.7*0.8,200,10);
	//eye
	fill(249,192,180);
	stroke(249,192,180);
	strokeWeight(6);
	ellipse(width*0.2+facew/5,height*0.15+faceh/4,eyesize,eyesize);
    ellipse(width*0.2+facew/5+pupildiff,height*0.15+faceh/4,eyesize,eyesize);
	//mouth
	fill(254,225,124);
	rect(width*0.2+facew/4,height*0.15+faceh/3,facew/2,faceh/2+mouthopen,10);
	//teeth
	fill(255);
	rect(width*0.2+facew/3.5,height*0.15+faceh/3,facew/8,faceh/10,10);
	rect(width*0.2+facew/3.5+(facew/2)*0.6,height*0.15+faceh/3,facew/8,faceh/10,10);
}


function mousePressed() {
    facew = random(150,300);
    faceh = random(150,280);
    color1 = random(165,255);
    color2 = random(165,255);
    color3 = random(195,255);
    eyesize = random(5,22);
    pupildiff = random(40,100);
    mouthopen = random(-50,20);
}

I was inspired by Domo the brown monster when I first started my project. But later I decided to make a meme-like character with a melodramatic expression while doing something. Overall, I feel like this project is challenging but enjoyable.

Han Yu Project 1 Face

sketch

//Han Yu
//section D
//hyu1@andrew.cmu.edu
//Project 01 Face

function setup() {
    createCanvas(600,600);
    background(255);
}

function draw() {
	noStroke();
	fill(99,189,214);
	ellipse(300,300,550,550);
	//hair
	noStroke();
	fill(64,35,19);
	ellipse(282,275,235,300);
	ellipse(308,280,235,300);
	quad(380,270,190,270,150,530,450,530);

	//face
	noStroke();
	fill(253,205,174);
	ellipse(300,285,200,255);

	//hair
	noStroke();
	fill(64,35,19);
	ellipse(292,180,130,70);
	ellipse(250,200,130,50);

	//brows
	strokeWeight(4)
	stroke(1)
	noFill();
	arc(250, 270, 40, 40, PI+QUARTER_PI, TWO_PI-QUARTER_PI, OPEN);
	arc(338, 270, 40, 40, PI+QUARTER_PI, TWO_PI-QUARTER_PI, OPEN);

	//eyelashes
	fill(0);
	stroke(51)
	strokeWeight(5)
	line(240,267,260,270);
	line(320,268,340,270);

	//eyes
	noStroke();
	fill(0);
	ellipse(260,280,18,27);
	ellipse(340,280,18,27);

	//glisten
	fill(253,205,174);
	triangle(260,280,300,280,350,350);
	triangle(340,280,380,330,400,290);

	//nose
	stroke(255,187,164);
	strokeWeight(4);
	line(294,310,290,338);
	line(290,338,300,336);

	//neck
	noStroke();
	fill(253,205,174);
	rect(280,410,40,58);

	//lips
	stroke(200,114,110);
	fill(200,114,110);
	ellipse(300,365,40,9);

	//sweater
	noStroke();
	fill(random(0,255),random(150,255),random(160,245));
	quad(230,440,370,440,420,530,180,530);


}

I like doing the project overall. It took me a long time to find colors that match together. I couldn’t decide on one sweater color so I used a range of random colors I like.

Han Yu Looking Outwards 01

Arch 6 by Eric Standley. Cut Paper and watercolor.
Detailed look of Phidala by Eric Standley.

 

 

 

 

 

 

 

I was really inspired by Eric Standley’s laser cut paper art. Its incredibly intricate design is composed of at least 100 layers of antique paper precisely cut by a laser. Standley is the sole designer and craftsman of his laser papercuts. A lot of the patterns in his works are borrowed from gothic and islamic arts. His works often take several months to create since each layer of paper needs to be carefully planned. He needs to think about the negative spaces which are going to be cut off and also how can each layer contributes to the overall 3-D effect. And all of the designs are hand drawn on paper and then moved to software that controls the laser. In the interview below, Standley said his work started out as a bold exploration of a cardboard project he was working on a few years ago, as he decided to use laser technology to cut more precisely. Standley is hoping to make more complex works on larger scales in the future.