Homework 3.2 2/19/13

int x = 200;
int speed = 6;

void setup() {
size (600, 600);
}

void draw() {
background(0);
ellipse(x, 100, 100, 50);
noStroke();
fill(255, 225, 0);
ellipse(x, x, 200, 100);
speed = speed* 1;

fill (225,0,0);
random(225);

if (x > width) {
speed = speed * -1;
}

else if (x < 5) {
speed = speed * -1;
}

x = x+speed;
}

void mousePressed(){
fill(0,225,225);
ellipse(x, x, 100, 100);
}

About Ehis

My name is Ehis E. Igbinosa. Born and raised in one of the greatest continent of Africa, Nigeria. Currently an Entertainment Technology major at City Tech. I took some courses at Lehman College as a field production manager summer of 2010. I have had strong passion for music since I was 6 years old playing the drums of a local church in Benin-city Nigeria. I play a variety of gospel, reggae, hip-hop, Rnb, Calypso, and a little Techno-style of music. My passion for music has taken me from a smaller stage to a bigger platform in and across the country. I recently got signed to a Nigerian-American base record label NMG (Nosa Music Group) in March 2013. I was elected as one of the New York Top Talent in December of 2010. And today I have got talent in singing, playing the drums, keyboard/piano, and bass guitar for various groups/bands. Attachment below is an article featured in season 2 of New York Top Talent of which I was invited as a special guest performer. Outside of my music, I am licensed by the New York City Department of Environmental protection as an Environmental project monitor.
This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *