Facebook
From ben, 1 Week ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 206
  1. //acesending bar graph
  2. size (500, 500);
  3. for ( float x = 50 ; x < 255; x = x+50 ) {
  4. strokeWeight(x/50);
  5. fill(300-x);
  6. rect(x, 350, 50, -x);
  7. };
  8. save("activity7.png");