Tuesday, March 19, 2019

Gradient Mesh

Bite Me 

Gradient mesh is a tool used in illustrator that allows the user to create a replica of a common item by turning it into a virtual illustration. The use of different colors and shadows helps to give the item dimension and a 3D quality. For this piece, I decided to recreate an apple. The particular apple that I chose had many colors and highlights which was perfect for my first piece.

At first, this project was very difficult for me but after a while, I began to get the hang of it. Considering that this is my first time creating a piece like this, I am very proud of the work that I have produced. Perfecting the colors was a bit challenging but moving forward I will make sure that I create a color palette ahead of time to produce even higher quality work.

Apple I used for Inspiration:

Monday, March 4, 2019

If I were a symbol it would look like...


Eternal Happiness




My main goal in life is to enjoy every second of it. I love change and trying new things. When I was asked to think of symbols that represented me I knew that I had to include something that dealt with the desire for constant change. The triangle I have included has a double meaning. The upper arrow on the triangle represents progress and moving forward. The delta placed inside represents openness to change. God willing, I will have a lifetime to explore all that life has to offer.

The symbol that is attached to the triangle is the African symbol of happiness. I pride myself on having an optimistic view of life. Seeing the bright side of things helps me to remain calm during stressful situations. Very few things upset me and I make it my goal to remain happy even during my darkest days. 


I decided to make this piece fairly simple because if it were shrunken down, each aspect would be visible and the message would still be able to be explained. 

Creative Process/ Sketches:







Sunday, February 24, 2019

Womens Impowerment Calligram

What She's Made Of 

Women possess SO many positive qualities that are constantly overlooked by society. Why are we seen as inferior when we are just as capable as men? 

I created this piece to share the words that come to mind when I think of women. Being raised by a strong woman has taught me to appreciate all that we have to offer. I've always been taught that I will have to work ten times harder than a man, even if I am more qualified. Some men will always feel like we don't have it in us to be on their level in society or hold positions of power because we are simply "moody" and unintelligent.  Although there were so many other words I could've used in this piece, the main goal was to portray that we are all filled with the qualities necessary to make a positive impact in this world. Uplifting other girls is a main goal of mine because it is important to motivate each other in a world where we are degraded.  The future is female. Our contributions to the world will not go unnoticed as long as we continue to voice our opinions and inspire one another. 










Tuesday, February 12, 2019

Abstract Art Using Code



Coding is definitely a difficult skill to learn and it takes patience and determination. Considering this was my first time creating an art piece using code, this project took a lot of time to complete. Originally, I planned on creating a cartoon character using code but I was unable to figure out how to complete that goal. Instead, I decided to create an abstract piece of art that allowed me to express my preferred artistic style. To be completely honest, I completed this project with the trial and error strategy and eventually all of the shapes morphed into a cohesive piece. After I placed the first three shapes on the grid I was able to better understand how to manipulate the shapes to fall where I wanted on the x and y axis. 

Fluidity is what makes my piece the most successful. There is an elegance to the way the arcs flow together while there are other shapes surrounding them from all angles. 

I spent a total of thirty- two hours on this piece. Most of my time went towards figuring out the placement of the shapes as mentioned before. Choosing the colors and theme also took me awhile to figure out because constantly had new ideas. I hope anyone who views this enjoys it as much as I do. 

Code: 


<!DOCTYPE HTML>
<html>
<head>
<script>
window.onload = function() {
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");

////////////////////////////////////// start below this lineˇˇˇˇˇˇˇˇˇˇ



// gradient background
for (var yay=-1500; yay<canvas.height; yay+=7) {

var startX = 1000;
var startY = yay-2000;
var endX = canvas.width;
var endY = canvas.height;
var cpointX = yay+200;
var cpointY = -yay;
context.beginPath();
context.moveTo(startX, startY);
//context.lineTo(endX, endY);
context.quadraticCurveTo(cpointX, cpointY, endX, endY);
//context.closePath();
context.strokeStyle = "rgb(238,69,36)";
context.fillStyle = "rgb(0,0,255)";
context.fill();
context.lineWidth = 2;
context.stroke();

}




/////BEZIER CURVE #1
for (var i=0; i<canvas.height; i+=5) {

var startX = 100;      ////canvas.height/ 10;
var startY = 200;
// starting point coordinates
var endX = 700;     ////canvas.width;
var endY = 250;
//control point 1 coordinates ( magnet )
var cpoint1X = 200;
var cpoint1Y = i/.5;   ///canvas.height/200;
/////control point 2 coordinates (magnet)
var cpoint2X = canvas.width*.1/10;
var cpoint2Y = canvas.height*9/10;

//// Draw the Bezier curve
context.beginPath();
context.moveTo(startX, startY);  ///cpoint1Y
context.bezierCurveTo(cpoint1X, cpoint1Y , cpoint2X, cpoint2Y, endX, endY);
context.lineWidth = 2;
context.strokeStyle = "rgb("+i+","+i/2+",125)";
context.stroke();

}



/////// BEZIER CURVE - 2
for (var i=0; i<canvas.height; i+=10) {
var startX = -3;    
var startY = 600;
// starting point coordinates
var endX = -800;    
var endY = -i;
var cpoint1X = canvas.width;
var cpoint1Y = canvas.height;  
var cpoint2X = i;
var cpoint2Y = 375;
context.beginPath();
context.moveTo(startX, startY);  ///cpoint1Y
context.bezierCurveTo(cpoint1X, cpoint1Y , cpoint2X, cpoint2Y, endX, endY);
context.lineWidth = 1;
context.strokeStyle = "rgb(223,127,71)";
context.stroke();
}


/////// BEZIER CURVE - 2
for (var i=0; i<canvas.height; i+=10) {
var startX = 6;    
var startY = 950;
// starting point coordinates
var endX = 300;    
var endY = i;
var cpoint1X = canvas.width;
var cpoint1Y = canvas.height;  
var cpoint2X = i;
var cpoint2Y = 300;
context.beginPath();
context.moveTo(startX, startY);  ///cpoint1Y
context.bezierCurveTo(cpoint1X, cpoint1Y , cpoint2X, cpoint2Y, endX, endY);
context.lineWidth = 1;
context.strokeStyle = "rgb(85,24,126)";
context.stroke();
}


/////// BEZIER CURVE 3
for (var i=0; i<canvas.height; i+=10) {
var startX = 3;    
var startY = 200;
// starting point coordinates
var endX = 600;    
var endY = i;
var cpoint1X = canvas.width;
var cpoint1Y = canvas.height;  
var cpoint2X = i;
var cpoint2Y = 75;
context.beginPath();
context.moveTo(startX, startY);  ///cpoint1Y
context.bezierCurveTo(cpoint1X, cpoint1Y , cpoint2X, cpoint2Y, endX, endY);
context.lineWidth = 1;
context.strokeStyle = "rgb(255,225,0)";
context.stroke();
}


// straight yellow lines in the center
for (var i=0; i<canvas.height; i+=35) {
var startX = -900;
var startY = i;
var endX = i;
var endY = 300;
var r = 2;
var g = 2;
var b = 2;
context.beginPath();
context.strokeStyle = "rgb(255,255,0)";
context.lineCap = 'round'; // "butt" "square"
context.lineWidth = i/400;
context.moveTo(startX, startY);
context.lineTo(endX, endY);
context.stroke();
}


// starting point coordinates
var startX = 70;
var startY = canvas.height/90;

// control point coordinates ( magnet )
var cpointX = canvas.width / 100;
var cpointY = canvas.height / 80 + 700;

// ending point coordinates
var endX = canvas.width;
var endY = canvas.height/2;


context.beginPath();
context.moveTo(startX, startY);
context.quadraticCurveTo(cpointX, cpointY, endX, endY);

context.lineWidth = 1;
context.strokeStyle = "rgb(243,158,47)";
context.stroke();




//Biggest black dot on top

 var centerX = canvas.width / 2.4;
        var centerY = canvas.height / 5;
        var radius = 10;
        var startangle = 0;
        var endangle = 2 * Math.PI;

        context.beginPath();
        context.arc(centerX, centerY, radius, startangle, endangle, false);
        //context.fillStyle = "red";

 var grd=context.createRadialGradient(centerX, centerY, 40, centerX, centerY, 80);
 grd.addColorStop(0, "rgb(0,0,0)");
 grd.addColorStop(1, "rgb(0,0,0)");
 context.fillStyle = grd;
 context.fill();
                context.lineWidth = 1;
        context.strokeStyle = "black";
        context.stroke();





//middle black dot on top
 var centerX = canvas.width / 2.5;
        var centerY = canvas.height / 3;
        var radius = 7;
        var startangle = 0;
        var endangle = 2 * Math.PI;

        context.beginPath();
        context.arc(centerX, centerY, radius, startangle, endangle, false);
        //context.fillStyle = "red";

       

var grd=context.createRadialGradient(centerX, centerY, 40, centerX, centerY, 80);
 grd.addColorStop(0, "rgb(0,0,0)");
 grd.addColorStop(1, "rgb(0,0,0)");
 context.fillStyle = grd;
 context.fill();
                context.lineWidth = 1;
        context.strokeStyle = "black";
        context.stroke();



//smallest black dot on top

 var centerX = canvas.width / 2.3;
        var centerY = canvas.height / 2.3;
        var radius = 4;
        var startangle = 0;
        var endangle = 2 * Math.PI;

        context.beginPath();
        context.arc(centerX, centerY, radius, startangle, endangle, false);
        //context.fillStyle = "red";

       

var grd=context.createRadialGradient(centerX, centerY, 40, centerX, centerY, 80);
 grd.addColorStop(0, "rgb(0,0,0)");
 grd.addColorStop(1, "rgb(0,0,0)");
 context.fillStyle = grd;
 context.fill();
                context.lineWidth = 1;
        context.strokeStyle = "black";
        context.stroke();




//bottom center black dot
var centerX = canvas.width / 1.5;
        var centerY = canvas.height / 1.35;
        var radius = 7;
        var startangle = 0;
        var endangle = 2 * Math.PI;

        context.beginPath();
        context.arc(centerX, centerY, radius, startangle, endangle, false);
        //context.fillStyle = "red";

       

var grd=context.createRadialGradient(centerX, centerY, 40, centerX, centerY, 80);
 grd.addColorStop(0, "rgb(0,0,0)");
 grd.addColorStop(1, "rgb(0,0,0)");
 context.fillStyle = grd;
 context.fill();
                context.lineWidth = 1;
        context.strokeStyle = "black";
        context.stroke();



// small black dot on the bottom
var centerX = canvas.width / 1.65;
        var centerY = canvas.height / 1.45;
        var radius = 4;
        var startangle = 0;
        var endangle = 2 * Math.PI;

        context.beginPath();
        context.arc(centerX, centerY, radius, startangle, endangle, false);
        //context.fillStyle = "red";

       

var grd=context.createRadialGradient(centerX, centerY, 40, centerX, centerY, 80);
 grd.addColorStop(0, "rgb(0,0,0)");
 grd.addColorStop(1, "rgb(0,0,0)");
 context.fillStyle = grd;
 context.fill();
                context.lineWidth = 1;
        context.strokeStyle = "black";
        context.stroke();



//large black dot on bottom
var centerX = canvas.width / 1.40;
        var centerY = canvas.height / 1.22;
        var radius = 10;
        var startangle = 0;
        var endangle = 2 * Math.PI;

        context.beginPath();
        context.arc(centerX, centerY, radius, startangle, endangle, false);
        //context.fillStyle = "red";

       

var grd=context.createRadialGradient(centerX, centerY, 40, centerX, centerY, 80);
 grd.addColorStop(0, "rgb(0,0,0)");
 grd.addColorStop(1, "rgb(0,0,0)");
 context.fillStyle = grd;
 context.fill();
                context.lineWidth = 1;
        context.strokeStyle = "black";
        context.stroke();






////////////////////////////////////// end above this line ˆˆˆˆˆˆˆˆˆˆˆˆˆˆˆ

};

</script>
</head>
<body>
<canvas id="myCanvas" width="800" height="600"></canvas>
</body>
</html>

Tuesday, January 29, 2019

So... Who Invented the Internet and the Web?

Everyone loves the internet. It's a tool that is used daily in one way or another to gather and or share information. A common misconception is that the internet and the web are the same thing.

 The best way to describe the internet is to think of it as a network of multiple different networks combined. When computers are connected to the internet it allows people from all over the world are able to communicate through the internet. Vint Cerf and Robert E. Kahn are the two names that are thought of when someone is asked who was responsible for creating the internet.

The difference between the internet and the web is that the web is made up of all the information and resources that users need. Websites or webpages are what make up the web and they make a way for information to be located. Sir Tim Berners and Robert Cailliau are the creators of the world wide web. They created the invention in 1990 and in 1989 they began planning for the creation of the hypertext systems that we commonly use today.



Websites used:

https://www.google.com/search?ei=CQxRXKzlMOHl_Qb5mp-IDA&q=what+is+the+world+wide+web+in+simple+terms&oq=what+is+the+web+in+simp&gs_l=psy-ab.1.0.0i22i30l3.10126.11776..13277...0.0..0.119.801.4j4......0....1..gws-wiz.......0i71j0i20i263j0j0i22i10i30.pm71t57nr7o

https://www.google.com/search?rlz=1C5CHFA_enUS760US760&ei=WApRXJ7MGvG2gget67LoCw&q=simple+definition+of+internet&oq=what+is+the+internet&gs_l=psy-ab.1.1.0i71l8.0.0..346294...0.0..0.0.0.......0......gws-wiz.MuXQon5Ovb8

https://www.boutell.com/newfaq/history/inventedweb.html


Sunday, January 27, 2019

New Digital Adventure


Hello! My name is Ayana and I'm an Advertising and Public Relations Major. My hometown is Columbia, MD and I moved to Tampa to have a change of scenery along with new experiences.

In the world we currently live in, media plays a huge role and it influences the way society behaves. Being able to be in a course that teaches me how to create digital media projects will open up a world of opportunity for me and my career. When I was introduced to the field of advertising, I felt like I finally found a career path that allows me to have many job options and creative freedom. I have to admit that I am nervous about diving into this course because of the amount of information I will have to learn in only a few months. At the same time, I am learning that challenges me to push myself further than my comfort level.

In this course I expect to learn how to properly use technology and programs that I will need in order to create creative projects. Recently, I purchased a camera and I plan on learning how to portraits and capture exciting moments so the photoshop application we will be learning how to use will be very beneficial.