Author Archives: Noah

Noah Ruede – HW 2.2

Part 1: int r=255; int g=255; int b=255; boolean sunny; boolean sunny=false; float x; float x=12; float z; z = x+25; float y; y= x+z; Part 2: //Noah Ruede Calli Higgins Feb 14 2013 int colorW = 255; //assigning values … Continue reading

Posted in Uncategorized | Leave a comment

Noah Ruede – 2.1

Could upload to openprocessing, but for some reason the program doesn’t display in the box, at least not in my browser.  Strange. Part 2: //fix the 15 errors void setup (){ size(200,200); } void draw(){ background(0); fill(255); ellipse(100,100,100,100); fill(0); line(100,100,150,150); … Continue reading

Posted in Uncategorized | Leave a comment

Noah Ruede – HW 1.2

Part 2 //Noah Ruede Calli Higgins Feb 5 2013 //Establishing size of image size(400,400); //Eliminating stroke noStroke(); //Rectangle 1 Color fill(255,0,0); //Rectangle 1 Size/Position rect(0,0,200,200); //Rectangle 2 Color fill(0,255,0); //Rectangle 2 Size/Position rect(200,0,200,200); //Rectangle 3 Color fill(0,0,255); //Rectangle 3 Size/Position … Continue reading

Posted in Uncategorized | Leave a comment