Saturday, January 30, 2016

INTERACTION INFLUENCE

This is a previous code/design I did and so when I got this current assignment, I definitely thought of new ideas, but this one was very similar to the new code I wanted to get down. This work below helped me a lot just by refreshing my memory. Ex. If, then statements




INTERACTION FINAL



Friday, January 22, 2016

//HOAN BRIDGE PROCESS







//HOAN BRIDGE FINAL

//Hoan Bridge Sketch

size(600,600);
background(172,207,247); //blue

textSize(60); //font size
textAlign(CENTER);
fill(0); //black
text("HOAN",width/2,400);
fill(126); //grey
text("BRG",width/2,450);
fill(255); //white
text("MKE",width/2,500);

fill(255,218,8); //yellow
stroke(255,218,8); //stroke color = yellow
ellipse(500,100,100,100); //"sun"

stroke(0); 
strokeWeight(3); //thickness
fill(172,207,247); //blue; same as background
arc(300,300,300,200,-PI,0);

stroke(0); //black
line(0,250,width,250); //bridge base

line(130,300,0,250);
line(150,300,130,300);

line(470,300,600,250);
line(450,300,470,300);