Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- color stipKleur = color(255,65,65);
- color achtergrondKleur = color(255,255,65);
- String onderschrift;
- void setup()
- {
- size(400, 300);
- }
- void draw()
- {
- onderschrift = "Rode stip";
- background(0, 255, 255);
- noStroke();
- fill(202, 31, 123);
- ellipse(mouseX, mouseY, 30, 30);
- fill(0);
- text(onderschrift,200,150);
- }
Advertisement
Add Comment
Please, Sign In to add comment