Monthly Archives: February 2013

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 … Continue reading

Posted in Uncategorized | Leave a comment

Alyssa Seosankar – Prof. Higgins – HW 3.2 Part 3 – Due 02/18/13

//Alyssa Seosankar – Prof. Higgins – HW 3.2 Part 3 – Due 02/18/13 int x = 100; int speed = 1; int ball = color(159, 0, 244); void setup(){ //Setting window size size(400, 500); } void draw(){ //Setting background color … Continue reading

Posted in Uncategorized | Leave a comment

HW 3.2 Part 3

int x = 100; int speed = 7; void setup() { size (600, 600); } void draw() { background(0); noStroke(); fill(255, 0, 0); ellipse(x, x, 200, 200); if (x > width) { speed = speed * -1; } else if … Continue reading

Posted in Uncategorized | Leave a comment

part 3 hw 3.2

http://www.openprocessing.org/sketch/90119

Posted in Uncategorized | Leave a comment

Matthew Soto 2/19/13 HW 3.3

int x= 1; int speed= 1; float r= 255; float g= 0; float b=4; void setup(){ size(800, 800); } void draw(){ background(0); fill(255); ellipse(x, 200, 100, 100); if(x>width){ speed=speed* -1; fill(255, 0, 4); ellipse(x, 200, 100, 100); } else if … Continue reading

Posted in Uncategorized | Leave a comment

Homework 3.2

http://www.openprocessing.org/sketch/90105

Posted in Uncategorized | Leave a comment

H.W. 3.2 part 2 by Reno Abraham

http://www.openprocessing.org/sketch/90096

Posted in Uncategorized | Leave a comment

Homework 3.2 Part 3

Link here: http://www.openprocessing.org/sketch/90101

Posted in Uncategorized | Leave a comment

HW 3.2.3

/*Nafis S Sabir Prof. Calli Higgins HW 3.2.3*/ int x = 300;//ellipse x location float y = random(600);//random ellipse y location int speed = 2;//x-axis speed change int bounce = 2;//y-axis speed change float color1 = random(50);//random float color void … Continue reading

Posted in Uncategorized | Leave a comment

Erick Asadobay H.W 3.2 Part

http://www.openprocessing.org/sketch/90090

Posted in Uncategorized | Leave a comment