ben5NL

Untitled

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