ben5NL

Untitled

Jun 14th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. color kleur = 255;
  2. int positieX;
  3.  
  4. void setup()
  5. {
  6. size(300, 300);
  7. }
  8.  
  9. void draw() {
  10. fill(kleur);
  11. rect(135, 135, 40, 40);
  12. textSize(20);
  13. fill(0);
  14. text("Lekker kleuren",85,280);
  15. }
  16.  
  17. void mouseDragged()
  18. {
  19. positieX = mouseX;
  20. kleur = color(positieX);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment