Advertisement
joe_891

Function scope variable e.g

Oct 16th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. void setup()
  2. {
  3. size(400,300);
  4. background(255);
  5. }
  6. void draw()
  7. {}
  8. void mousePressed()
  9. {
  10. float dia = random(20,50);
  11. ellipse(mouseX, mouseY, dia,dia);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement