Monthly Archives: February 2013

Matthew Soto 2/7/13 HW Part 2.3

void setup(){ background(0,0,0);//sky, light blue fill(255, 255, 255);//Color of the sun, yellow ellipse(15, 20, 25, 25);//Shape and position of the sun } void draw(){ fill(170, 0, 0);//House, fill in color rect(32, 50, 55, 55);//Shape and positon of the house stroke(205, … Continue reading

Posted in Uncategorized | 1 Comment

Homework 2.1 Part 2

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

Posted in Uncategorized | 1 Comment

Nafis Sabir HW 2.1.2

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

Posted in Uncategorized | Leave a comment

Jad Atoui – Homework 2.1 part 2 due 2/7/13

//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); } http://www.openprocessing.org/sketch/88614

Posted in Uncategorized | 1 Comment

Alyssa Seosankar – Prof. Higgins – HW 2.1 Part 3 – Due 02/06/13

//Alyssa Seosankar – Prof. Higgins – HW 2.1 Part 3 – Due 02/06/13 void setup(){ //Setting the window size size(500, 400); } void draw() { //Setting background color background(0, 0, 0); //Drawing head of creeper fill(0, 0, 0); stroke(249, 255, … Continue reading

Posted in Uncategorized | Leave a comment

Ellington Homework 2.3

http://www.openprocessing.org/sketch/88608 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, … Continue reading

Posted in Uncategorized | Leave a comment

Nafis S. HW 2.1.3

http://www.openprocessing.org/sketch/88606 /*Nafis Sabir Professor Calli Higgins HW 2.1.3*/ void setup() { size(800, 800);//window size background(0, 150, 255);//background color strokeWeight(9);//weight for stems stroke(10, 200, 0);//stem color line(200, 303, 200, 700);//stem 1 line(560, 503, 560, 700);//stem 2 line(380, 403, 380, 700);//stem 3 … Continue reading

Posted in Uncategorized | Leave a comment

Homework 2.1- Correct 16 errors

http://www.openprocessing.org/sketch/88599 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

Alyssa Seosankar – Prof. Higgins – HW 2.1 Part 2 – Due 02/06/13

//Alyssa Seosankar – Prof. Higgins – HW 2.1 Part 2 – Due 02/06/13 void setup() { size(263, 270); } void draw() { background(0); fill(255,255); ellipse(140, 140, 130, 130); stroke(125); strokeWeight(2); line(140, 140, 185, 185); noStroke(); rect(mouseX, mouseY, 65, 65); }

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