Author Archives: Brandon Espinal

Midterm

For the midterm project I want to make a fruit tree that dropped fruit and as the fruit dropped you would have to catch it with a basket. The tree was suppose to have red, green, and yellow apples and … 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

Brandon Espinal H.W 2.2

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

Posted in Uncategorized | Leave a comment

H.W2.1

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

Posted in Uncategorized | 1 Comment