I am here Today // Progam 1 //@RMS 1/30/17 void setup() { // Screen Size Adjust size(500,500); //Black Backround background(0,0,0); } void draw(){ //Shapes fill(0,255,0); rect( 125, 125, 250, 250); fill(255,0,0); rect( 150, 150, 200, 200); fill(255,200,100); rect( 175, 175, 150, 150); fill(0,0,100); rect( 200, 200, 100, 100); fill(255); ellipse(250,250,100,100); fill(255); line(250,250,100,100); line(100,400,250,250); line(100,400,100,100); fill(255); line(400,100,100,100); line(400,100,250,250); line(100,400,100,100); fill(255); line(400,100,100,100); line(400,400,250,250); line(400,100,400,400); fill(255); line(400,100,100,100); line(100,400,400,400); line(400,100,400,400); }