Tuesday, May 3, 2016

Last Blog in class questions

My biggest failures in the class include a large amount of the projects because I certainly struggled with the work. However once I went back and redid all of the assignments I was able to significantly improve the work and learn more each time.  My favorite project of the year or best work was most likely the Calligram or the Autoscopy.  I really enjoyed the whole class and all of the projects and its been a pleasure taking the class this year. 

Portfolio









Here are the slides from my portfolio final project.  I thoroughly enjoyed completing this project although it was certainly very demanding and took quite a bit of time.  Every page has a piece of me in it and I feel like the project will be with me for a long time.  The organization was tough at the beginning but then once I decided on a final order for my booklet things lined up much more nicely.  The booklet took a combination of the software and was certainly an accumulation of the projects we have completed throughout the class.

Monday, May 2, 2016

Business Cards / Logo

For my business cards I used my partner's main interests and hobbies.  Kevin Martin's father owns a construction company that is very successful and something of interest to him.  Kevin Martin is also a outstanding baseball player and top MLB prospect.  Kevin Martin is also a AD/PR major and brilliant talent in all fields of work that he dives into.  No matter what, Kevin Martin will be a name you will soon never forget and always hope to be lucky enough to know. 

Sunday, May 1, 2016

Poster Project Final Draft

For my final poster project I decided to use a picture of me pitching against the Philadelphia Phillies.  The punchline I used is in regards to the two Tommy John surgeries I have gone through in the past 3 years. 

Thursday, February 4, 2016

ART 210 Canvas






 context.beginPath();

 context.rect(0,0,800,600)
 context.fillStyle = "rgba(255,191,191,1)";
 context.fill();

context.closePath()

////// smaller rectangle

context.beginPath();

 context.rect(100,100,200,150)
 context.fillStyle = "rgba(0,191,191,1)";
 context.fill();
 context.lineWidth = 5;
 context.strokeStyle = "rgba(0,0,0,1)";
 context.stroke();
 context.closePath();


 ////// smaller rectangle

context.beginPath();

 context.rect(100,100,200,250)
 context.fillStyle = "rgba(255,0,191,0.5)";
 context.fill();
 context.lineWidth = 5;
 context.strokeStyle = "rgba(0,0,0,1)";
 context.stroke();
 context.closePath();

 context.beginPath();

 context.rect(100,250,350,250)
 context.fillStyle = "rgba(100,100,185,1)";
 context.fill();
 context.lineWidth = 5;
 context.strokeStyle = "rgba(1,1,1,1)";
 context.stroke();
 context.closePath();

 context.beginPath();

 context.rect(150,250,350,300)
 context.fillStyle = "rgba(200,100,201,0.5)";
 context.fill();
 context.lineWidth = 5;
 context.strokeStyle = "rgba(0,0,0,1)";
 context.stroke();
 context.closePath();

 context.beginPath();

 context.rect(300,100,200,150)
 context.fillStyle = "rgba(155,70,91,1)";
 context.fill();
 context.lineWidth = 5;
 context.strokeStyle = "rgba(2,2,2,1)";
 context.stroke();
 context.closePath();

 context.beginPath();

 context.rect(175,220,310,150)
 context.fillStyle = "rgba(200,0,191,0.5)";
 context.fill();
 context.lineWidth = 5;
 context.strokeStyle = "rgba(0,0,0,1)";
 context.stroke();
 context.closePath();

 context.beginPath();

context.arc(400, 230, 60, 0*Math.PI, 2*Math.PI, false);
context.fillStyle = "rgba(0,255,0,1)";
context.fill();
context.lineWidth = 10;
context.stroke();

context.closePath();

context.beginPath();

context.arc(400, 370, 60, 0*Math.PI, 2*Math.PI, false);
context.fillStyle = "rgba(0,255,0,1)";
context.fill();
context.lineWidth = 10;
context.stroke();

context.closePath();

 var rdg = context.createRadialGradient(400,300,20,400,300,300);
 rdg.addColorStop(0, "black");
 rdg.addColorStop(0.3, "cyan");
 rdg.addColorStop(1, "red");

context.beginPath();
context.moveTo(100,300);
context.bezierCurveTo(100,0,700,600,700,300);
context.bezierCurveTo(700,0,100,600,100,300);
context.fillStyle = rdg;
context.fill();
context.stroke();
context.closePath();


 context.beginPath();
context.moveTo(100,300);
context.quadraticCurveTo(400,0,700,300);
context.quadraticCurveTo(400,600,100,300);
context.fillStyle = "rgba(255,255,42,0.25)";
context.fill();
context.stroke();
context.closePath();


 context.beginPath();

context.arc(400, 300, 60, 0*Math.PI, 2*Math.PI, false);
context.fillStyle = "rgba(255,0,0,0.5)";
context.fill();
context.lineWidth = 10;
context.stroke();

context.closePath();



context.beginPath();
context.moveTo(50,500);
context.quadraticCurveTo(400,0,700,300);
context.strokeStyle = "red";
context.stroke();
context.closePath();

 context.beginPath();
context.moveTo(50,650);
context.quadraticCurveTo(400,0,700,300);
context.stroke();
context.closePath();

  context.beginPath();
context.moveTo(50,1450);
context.quadraticCurveTo(400,0,700,300);
context.stroke();
context.closePath();

   context.beginPath();
context.moveTo(50,2500);
context.quadraticCurveTo(400,0,700,300);
context.stroke();
context.closePath();