Author Archives: Jad Atoui

Homework 2.2 part 1 – Jad Atoui

//Homework 2.2 part 1 – Jad Atoui int r = 255; int g = 255 boolean sunny = false; float x = 12.0; float z; z = x + 25; float y = z + x;

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

Homework 1.2 part 2 – 2/5/13

//Jad Atoui. Prof: Calli Higgins . Due 2/5/13 . Assignment 1.2 part 2 size(400,400);// sets the size of the window noStroke();//shape has no outline fill(255,0,0);//set red color rect(0,0,200,200);//insert first rectangle fill(0,255,0);//insert green color rect(200,0,200,200);//insert second rectangle fill(0,0,255);//insert blue color rect(0,200,200,200);//insert … Continue reading

Posted in Uncategorized | Leave a comment