ben5NL

Untitled

May 31st, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. color stipKleur = color(255,65,65);
  2. color achtergrondKleur = color(255,255,65);
  3. String onderschrift;
  4.  
  5. void setup()
  6. {
  7. size(400, 300);
  8. }
  9.  
  10. void draw()
  11. {
  12. onderschrift = "Rode stip";
  13. background(0, 255, 255);
  14. noStroke();
  15. fill(202, 31, 123);
  16. ellipse(mouseX, mouseY, 30, 30);
  17. fill(0);
  18. text(onderschrift,200,150);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment