//Jad Atoui – Prof. Higgins – Homework 2.1 Part 2– Due 2/6/13
void setup() {
size(200, 200);
}
void draw() {
background(0);
fill(255);
ellipse(100, 100, 100, 100);
line(100, 100, 200, 200);
rect(mouseX, mouseY, 50, 50);
}
//Jad Atoui – Prof. Higgins – Homework 2.1 Part 2– Due 2/6/13
void setup() {
size(200, 200);
}
void draw() {
background(0);
fill(255);
ellipse(100, 100, 100, 100);
line(100, 100, 200, 200);
rect(mouseX, mouseY, 50, 50);
}
Our goal is to make the OpenLab accessible for all users.
Our goal is to make the OpenLab accessible for all users.
Jad-
Do you have the second part? You were also supposed to reorganize your code into setup and draw and upload it to openprocessing. Please add that so I can give you full credit.
– Calli