Advertisement
aandnota

Sharing Test

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