-
Recent Posts
Recent Comments
- Danielle Small on Final Blog Post
- Calli Higgins on Homework 10.2
- Calli Higgins on Homework 10.2
- Calli Higgins on Homework 10.2
- Calli Higgins on Nafis Sabir HW 10.2
Archives
Categories
Meta
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