Advertisement
mitchellvette

Mitch G - Exercise 2-2

Mar 12th, 2015
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void setup(){
  2.     size(512,256);
  3.     smooth();
  4. }
  5.  
  6. void draw(){
  7.     if (mousePressed) {
  8.         fill(0);
  9.     }
  10.     else {
  11.         fill(125);
  12.     }
  13.     ellipse(mouseX, mouseY, 80, 80);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement