-
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: Ellington
Homework 2.2
int r=255; int g=55; int b=255; boolean sunny; sunny=false; float x=12.0; float z; z=x+25; float y=z+x; – Ellington
Posted in Uncategorized
1 Comment
Ellington Homework 2.3
void setup () { size(1000, 1000);//window size background(0);//Black Background } void draw () { //enable movement //circle1 fill(19, 247, 0); stroke(mouseX-0, mouseY+130, 30); strokeWeight(10); ellipse(mouseY, mouseX, 150, 150); //circle2 fill(169, 0, 222); stroke(mouseX-70, 130, 30); strokeWeight(10); ellipse(mouseX, mouseX, 300, 300); … Continue reading
Posted in Uncategorized
Leave a comment
Homework 2.1- Correct 16 errors
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); }
Posted in Uncategorized
Leave a comment