Posts

Showing posts from 2017

Audio

https://youtu.be/SLBb4lqlpfM

Animation Link

https://youtu.be/64JAs584GHs

Art Project: Carson Warhol the Tough General

Image

Somewhere

Image

Autoscopy

Image

Self-Poster: i am shaped

Image
This is the self poster that I created off of the reference of the picture below. The words "I am shaped" on the poster derive from the way my art skills, film tropes, and character of mine have been shaped by my inspirations and experiences.

Glasses Gradient Mesh

Image
My gradient mesh is a picture of my Ray Ban Glasses and the original image is the first image seen. Then the drawing with the background for the second one and just the drawing for the last image.

Logos and Business Cards

Image
         These two Logos are for my independent film company named "My Mann Productions". The logos are inspired by the action of a person pointing at someone else with both hands or just one and saying "My Man".                This logo is for my photography business named "Mann Up Photography". At first, I was just going to name the company "Mann Photography" and have a nice letter based logo. This changed after an Uber driver suggested to amplify the meaning towards something more memorable.    These two logos are for my Entertainment company named "Homine Entertainment". This company will be the host of my production company, photography business, and Youtube channel image. I named it "Homine", which is "Man" in Latin, to play off of my last name.             First is my 1st out of 2 business cards for the production company. I decided to try to pop the letters ou

Calligraph Chancellor

Image
This calligraph is of my favorite musical artist Chance the Rapper. The general make-up of the picture can be seen here: The outline of the image is made up of the lyrics of my favorite song by Chance which is "Cocoa Butter Kisses." In some plays the words are copied due to length and some are disrupted due to artistic fault. 

A Non-Clockwork Orange by Carson Mann

Image
This is my final Canvas Project and it was inspired by my favorite film and book A Clockwork Orange. The project took several days and continuous headaches to finish and I was very pleased when completed. My code: <!doctype html> <html> <head> <meta charset="UTF-8"> <title> ART 210 - CANVAS PROJECT </title> <style type="text/css"> body,td,th { font-family: Helvetica, Arial, sans-serif; font-size: 12px; color: rgba(0,0,0,1); } body { background-color: rgba(255,255,255,1); } #myCanvas { border: rgba(102,0,255,1) medium dashed; } </style> </head> <body> <canvas id="myCanvas" width="510" height="600"></canvas>     <script> //// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> YOUR CODE STARTS HERE       var canvas = document.getElementById(&#

Canvas Project 1

Image
This is my first project for my digital art blog and I was just playing around the shapes in Dreamweaver. Once I put two circles together I saw a snowman type shape and decided to turn it into a robot. The the one robot needed a partner which led to this becoming real. /////////////////////////////////// Grass context.beginPath();       context.rect(0, 400, 900, 400);       context.fillStyle = 'green';       context.fill();       context.lineWidth = 7;       context.strokeStyle = 'green';       context.stroke();  ///////////////////////////////////// Head   var centerX = canvas.width / 7;       var centerY = canvas.height / 6;       var radius = 90;       context.beginPath();       context.arc(centerX, centerY, radius, 0, 2 * Math.PI, false);       context.fillStyle = 'red';       context.fill();       context.lineWidth = 5;       context.strokeStyle = 'blue';       context.stroke(); //////////////////////////////////