Monthly Archives: February 2013

Matthew Soto 2/14/13 HW 2.1

int r= 255; int g= 255; int b= 255; boolean sunny= false; float x; x= 12.0; float z; z=0; z= x + 25; float y= z + 12.0;

Posted in Uncategorized | Leave a comment

homework 2.2 part 2

//My new creation updated a little. int s =260; int a =540; int b= 80; int c= 20; void setup() { size(800,600); } void keyPressed(){ background(mouseX,mouseY,0); } void mousePressed(){ fill(mouseX,mouseY,0);//set red color rect(0,0,200,445);//uno rectangle fill(mouseX,mouseY,0);//set color green rect(559,0,230,445);//3rd rectangle } … Continue reading

Posted in Uncategorized | Leave a comment

Matthew Soto 2/14/13 HW 2.2

int circleX= 15; int circleY= 20; int circleW= 25; int circleH= 25; int fillX= 255; void setup(){ background(0,0,0);//sky, light blue fill(255, 255, 255);//Color of the sun, yellow ellipse(circleX, circleY, 25, 25);//Shape and position of the sun fill(170, 0, 0);//House, fill … Continue reading

Posted in Uncategorized | Leave a comment

//Alyssa Seosankar – Prof. Higgins – HW 2.2 Part 1 – Due 02/13/13

//Alyssa Seosankar – Prof. Higgins – HW 2.2 Part 1 – Due 02/13/13 int r= 255; int g= 255; int b= 255; boolean sunny= false; float x= 12.0; float z= 0; z= x+25; float y= z+x;

Posted in Uncategorized | Leave a comment

Homework 2.2 part 2 – Jad Atoui

//homework 2.2 part 2 float a = 0.0; float inc = TWO_PI/50; float prev_x = 0, prev_y = 300, x, y; int d = 200; int r = 100; float amp = 300; int strokeColor = 128; void setup(){ size(800, … Continue reading

Posted in Uncategorized | Leave a comment

homework 2.2

part 2 // sketch int EW=100; int EH=100; float EY; float EX; float r; float g; float b; float x; float y; float w; float h; void setup (){ size(600,600); EW=(100); EH=(100);   background(255); } void draw() { r=random(255); g=random(255); … Continue reading

Posted in Uncategorized | Leave a comment

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

Chris Pro homework 2.2 part 2

//Smiley Face Chris Pro //click the mouse anywhere to change background color //press a key and a body appears //animation will change line weight int frekSize = 7; //Window Size void setup() { size(800, 600); background(0); } void mousePressed() { … Continue reading

Posted in Uncategorized | Leave a comment

Hw 2.2 one and two

int r = 255; int g = 255; int b = 255; boolean sunny = false; float x = 12.0; float z; z = x+25; float y = z+x; here is part 2 http://www.openprocessing.org/sketch/89398

Posted in Uncategorized | Leave a comment

Jack’s Homework 2.2 Part 2

Exact link here: http://www.openprocessing.org/sketch/89372

Posted in Uncategorized | Leave a comment