//acesending bar graph size (500, 500); for ( float x = 50 ; x < 255; x = x+50 ) { strokeWeight(x/50); fill(300-x); rect(x, 350, 50, -x); }; save("activity7.png");