Monday, December 14, 2015

Animation Storyboard

I decided to go with a funny short clip for my animation project. To help me out, two of my friends made a short clip displaying a storyline. They are sitting on the bed playing video games when one ask the other if he has any juice. The friend says yes and to check the fridge. Once the other friend gets to the kitchen he realize the other has no juice and the music starts to play.
I plan on using rotoscoping for this project!

Sunday, December 13, 2015

Final Portfolio


For our final project we were asked to create a portfolio showing all of our projects in a book form. It was my first time using indesign and I must say the project itself wasn't too difficult. I went to get it printed at Fedex on Dale Mabry and was good to go. I think the hardest part of our last project was making sure the photos were not pixelated. Overall I have learned so much in this class and definitely enjoyed myself. For a girl who isn't great with computer programs, I'd say I think I did a great job in this class. I would definitely recommend this class, and this teacher to others in the future.

























 










Tuesday, December 1, 2015

Animation

For this project we had to create a 10-15second long animation with a story line. I decided to go with rotoscoping which, took longer overall but I personally think the outcome was great. This short clip shows two friends playing video games. One friend gets thirsty and ask the other if he has any juice. When told there was juice in the fridge the friend walks to the kitchen opens the fridge and sees there is nothing in the fridge at all. I thought it was a funny little clip and I'm very happy with the outcome.

Tuesday, November 10, 2015

Project: Collage Environment

This project was most special to me because I was given the opportunity to tell a story of my choice. The story I tried to portray was how dangerous the world is today. Having three brothers of my own it scares me to think that they could potentially get hurt, or even worse killed because of police brutality. "It could've been me" are song lyrics from a gospel duo MaryMary.

Wednesday, November 4, 2015

Project: Magazine Cover

I had a lot of fun with this project It took me some time to get it right, but I finally started getting the hang of things toward the end. The hardest part of this project for me was figuring out hot to cut some part of my images out that I was placing on my magazine cover

Monday, October 26, 2015

Photo manipulation


This assignment, wasn't too bad. I really enjoyed trying to figure out which pictures to use and adding them to different pictures. I had fun with this assignment once I got the hang of it.








Wednesday, October 21, 2015

Project 2: ASCII


I used my professors concept graph in order to size my project the correct way. I don't think I would have been able to do this project without this graph, it was very very helpful. This was definitely one of the more easier projects for me




//Outline
context.beginPath();
context.moveTo(150, 200);
context.lineTo(150, 475);
context.quadraticCurveTo(150, 550, 225, 550);
context.lineTo(575, 550);
context.quadraticCurveTo(650, 550, 650, 475);
context.lineTo(650, 200);
context.lineTo(150, 200);
context.closePath();
var grd = context.createLinearGradient(400, 200, 400, 550);
grd.addColorStop(0, '#F0EAE4');
grd.addColorStop(1, '#B39985');
context.fillStyle = grd;
context.fill();
context.stroke();




//Outline continued
context.beginPath();
context.moveTo(650, 200);
context.lineTo(650, 125);
context.quadraticCurveTo(650, 45, 575, 50);
context.lineTo(225, 50);
context.quadraticCurveTo(150, 55, 150, 125);
context.lineTo(150, 200);
var grd = context.createLinearGradient(400, 50, 400, 200);
grd.addColorStop(.5, '#B39076');
grd.addColorStop(1, '#482118');
context.fillStyle = grd;
context.fill();
context.stroke();


//Big circle
context.beginPath();
context.arc(400, 300, 125, 0, 2*Math.PI);
var grd = context.createLinearGradient(400, 200, 400, 550);
grd.addColorStop(0, '#F0EAE4');
grd.addColorStop(1, '#B39985');
context.fillStyle = grd;
context.fill();
context.stroke();

//Immer big circle
context.beginPath();
context.arc(400, 300, 110, 0, 2*Math.PI);
var grd = context.createLinearGradient(400, 190, 400, 415);
grd.addColorStop(0, '#547549');
grd.addColorStop(1, '#517C7E');
context.fillStyle = grd;
context.fill();
context.stroke();

//Smaller camera
context.beginPath();
context.moveTo(500, 100);
context.lineTo(500, 175);
context.quadraticCurveTo(500, 190, 525, 190);
context.lineTo(600, 190);
context.quadraticCurveTo(615, 190, 615, 175);
context.lineTo(615, 100);
context.quadraticCurveTo(615, 80, 595, 80);
context.lineTo(525, 80);
context.quadraticCurveTo(500, 80, 500, 100);
context.stroke();

//Smallest Camera
context.beginPath();
context.moveTo(515, 100);
context.lineTo(515, 165);
context.quadraticCurveTo(515, 180, 530, 180);
context.lineTo(580, 180);
context.quadraticCurveTo(600, 180, 600, 165);
context.lineTo(600, 100);
context.quadraticCurveTo(600, 88, 580, 90);
context.lineTo(525, 90);
context.quadraticCurveTo(515, 90, 515, 100);
var grd = context.createLinearGradient(550, 150, 550, 185);
grd.addColorStop(.5, '#3A5657');
grd.addColorStop(1, '#0D100F');
context.fillStyle = grd;
context.fill();
context.stroke();

//Rainbow
context.beginPath();
context.moveTo(175, 67);
context.lineTo(175, 200);
context.lineTo(275, 200);
context.lineTo(275, 50);
context.lineTo(225, 50);
context.quadraticCurveTo(172, 59, 175, 69);
var grd = context.createLinearGradient(175, 67, 275, 67);
grd.addColorStop(0, 'rgb(255, 0, 0)');
grd.addColorStop(.24, 'rgb(255, 0, 0)');
grd.addColorStop(.25, 'rgb(255, 255, 0)');
grd.addColorStop(.49, 'rgb(255, 255, 0)');
grd.addColorStop(.50, 'rgb(0, 255, 0)');
grd.addColorStop(.74, 'rgb(0, 255, 0)');
grd.addColorStop(.75, 'rgb(0, 0, 255)');
grd.addColorStop(1, 'rgb(0, 0, 255)');
context.fillStyle = grd;
context.fill();


//Oval
context.beginPath();
context.moveTo(190, 235);
context.lineTo(265, 235);
context.bezierCurveTo(295, 230, 295, 190, 265, 185);
context.lineTo(190, 185);
context.bezierCurveTo(165, 190, 165, 230, 190, 235);
var grd = context.createLinearGradient(200, 190, 265, 235);
grd.addColorStop(.25, '#7D7369');
grd.addColorStop(1, '#4F453F');
context.fillStyle = grd;
context.fill();
context.stroke();

//Smallest circle
context.beginPath();
context.arc(558, 135, 28, 0, 2*Math.PI);
var grd = context.createLinearGradient(555, 110, 555, 160);
grd.addColorStop(0, '#6E8D97');
grd.addColorStop(1, '#514055');
context.fillStyle = grd;
context.fill();
context.stroke();

//Smallest circle in bigger circles
context.beginPath();
context.arc(400, 300, 50, 0, 2*Math.PI);
var grd = context.createLinearGradient(400, 190, 400, 415);
grd.addColorStop(0, '#6E8D97');
grd.addColorStop(1, '#514055');
context.fillStyle = grd;
context.fill();
context.stroke();