Author Archives: Danielle Small

Midterm Blog Post

my original idea for the midterm project was to create three different mini games that will be activated once the user clicks on a certain button. i was only able to complete one game which was tic-tac-toe. there were many … Continue reading

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

Danielle Small homework 2.2

Part1: int r = 255; int g = 255; int b = 255; boolean sunny = false; float x = 12.0; float z; z = x + 25; float y; y = z + x;   Part2: int ellipfishX = … Continue reading

Posted in Uncategorized | Leave a comment

Danielle Small HW 2.1 part 1

//fix the 16 errors void setup(){ size(200, 200); } void draw(){ background(0); fill(255, 255, 255); ellipse(100,100,100, 100); line(300,300,400,400); rect(mouseX, mouseY, 50,50); }

Posted in Uncategorized | Leave a comment

Danielle Small HW 2.1 part 3

void setup() { size(400, 400);// window size background(255);// white background fill(255, 0, 0);// red color rect(200, 0, 200, 200);// red rectangle fill(0, 0, 255);// blue color rect(0, 200, 200, 200);// blue rectangle noStroke();// no outline for triangle’s fill(255, 0, 0);// … Continue reading

Posted in Uncategorized | 1 Comment