Skip to main content

Summer Project: Achievement Icons

I am creating a set of achievement Icons for A professor at my University who asked me if I can help out with the artwork for his math achievement system.I will be uploading the vector icons once I am finished.

Here is a sample icon I have created.

Comments

Popular posts from this blog

New Angry Birds(Maybe)

So I'm a huge fan of angry birds and while playing the game I thought hey I want to make some birds to break things. So here are some of the birds I created (with the exception of the first one). Let me know what you guys think. If you would like to study the drawing feel free to download the Inkscape SVG file. Right click then hit save link as: newbirds.svg All rights reserve to the original artists.

Inkscape Game Character #1

Heres a work of mine I did using Inkscape to reproduce the green pig from Angry Birds the video game by Rovio Mobile . If you would like to study the drawing feel free to download the Inkscape SVG file:. Right click then hit save link as:  pig.svg All rights reserve to the original artists.

CoderByte Array Addition I

I started playing around with coderbyte a place to test your programming skills. I was stumped for a bit on this question Array Addition I: "Using the JavaScript language, have the function  ArrayAdditionI( arr )  take the array of numbers stored in  arr  and return the string  true  if any combination of numbers in the array can be added up to equal the  largest number  in the array, otherwise return the string  false . For example: if  arr contains [4, 6, 23, 10, 1, 3] the output should return  true  because 4 + 6 + 10 + 3 = 23. The array will not be empty, will not contain all the same elements, and may contain negative numbers.  Use the  Parameter Testing  feature in the box below to test your code with different arguments." But eventually hammered it out. I saw some people using multiple for loops as well as nested loops. I took a different approach and just did math with the exception of one for loop....