Skip to main content

Autoscopy

Dear Blog, 
Here is my autoscopy project! We basically had to alter our face using photoshop in a way that represents something we didn't know about ourselves. After this past weekend playing soccer, I realized how aggressive and fierce I could be on the field so I felt like a lion was a good choice to symbolize that aspect of myself.

Comments

Popular posts from this blog

Gradient Mesh

Dear Blog,  The next task at hand was a gradient mesh of an object of our choice so here is what I put together. It is sort of a rough copy, since I am still getting the hang of it and struggled a little with it but here it is!                    

Canvas Final

      So here is my final piece after much time and hard work on it. It is simple but effective! context.rect(0, 0, 800, 350);       // add linear gradient       var grd = context.createLinearGradient(0, 0, 800, 350);       // light blue       grd.addColorStop(1, '#8ED6FF');       // dark blue       grd.addColorStop(0, '#004CB3');       context.fillStyle = grd;       context.fill(); context.beginPath(); //telling dw we are creating a closed shape context.moveTo(350,50); //this tells dw the starting point of a shape context.lineTo(100,150); //termination of the first line context.lineTo(600, 150); //creates a second line context.closePath(); //draws the closed shape (this is all about drawing by numbers) context.fillStyle = 'brown';       context.fill(); context.lineWidth = 7;  context.stroke...