Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. void setup(){
  2. size(256, 10);
  3. colorMode(RGB);
  4. noStroke();
  5. rectMode(CORNER);
  6. background(0);
  7. int col;
  8.  
  9. for (int i =0; i<256; i++) {
  10. col = color(255, 0, 0, i);
  11. fill(col);
  12. rect(i, 0, 1, 10);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement