Monthly Archives: February 2013

week 3 homework part 3

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

Posted in Uncategorized | Leave a comment

Jad Atoui . Homework 3.2 part 2 .

// Jad Atoui . Homework 3.2 part 2 . http://www.openprocessing.org/sketch/90078  

Posted in Uncategorized | Leave a comment

Mohammad Rahat hw 3.2 part 3

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

Posted in Uncategorized | Leave a comment

Alyssa Seosankar – Prof. Higgins – HW 2.2 Part 2 & Part 3 – Due 02/13/13

//Alyssa Seosankar – Prof. Higgins – HW 2.2 Part 2 & Part 3 – Due 02/13/13 int eyeoutline = 4; int colorB = 0; int head = 200; void setup(){ //Setting the window size size(500, 400); } void draw() { … Continue reading

Posted in Uncategorized | Leave a comment

Homework 3.2

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

Posted in Uncategorized | Leave a comment

HW3 Part 3

Ashlee Frontin.. Bouncing Ball Link: http://www.openprocessing.org/sketch/90058/embed/?width=400&height=400&border=true

Posted in Uncategorized | Leave a comment

Danielle Small Homework 3.2 Part 3

int x = 0; int speed = 1; int circleSize = 100; void setup(){ size(600, 600); } void draw(){ background(216, 245, 7); ellipse(x, 200, circleSize, circleSize); if(x < 300){ fill(250, 5, 226); } else if(x > 300){ fill(12, 159, 247); … Continue reading

Posted in Uncategorized | Leave a comment

HW-#1.2

Ehis Igbinosa size(400,400); //overall size 400 by 400 pixels fill(255,0,0); // Upper left red color rect(0,0,200,200); //Square is red color fill(0,225,0); //upper right green color rect(200,0,400,200); //Square green fill(0,0,255); //bottom left blue color rect(0,200,200,200); //square is blue fill(125,125,125); //bottom right … Continue reading

Posted in Uncategorized | Leave a comment

H.W. work 2.2 part two and three Reno Abraham

int r, g, b; float x= 12.0; boolean sunny= false; float z = 0; float y; z=x+25; y=z+x; r=255; g=225; b=255; part three http://www.openprocessing.org/sketch/89394

Posted in Uncategorized | Leave a comment

Brandon Espinal H.W 2.2

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

Posted in Uncategorized | Leave a comment