Facebook
From Adjowa Asamoah, 1 Month ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 145
  1. size(500,500);
  2. background(215);
  3.  
  4. int y_coord = 80;
  5. int x_coord = 80;
  6.  
  7. int w = 60;
  8.  
  9. for(int i=0; i<5; i++) {
  10.   fill(255 - (45 * i));
  11.   rect(x_coord + (i*w), y_coord , w, w * 5);
  12. }
  13.  
  14. save("activity6.png");