Skip to content

Instantly share code, notes, and snippets.

@m4rk3r
Created September 22, 2014 00:09
Show Gist options
  • Save m4rk3r/62f8dbcca58c6848dce2 to your computer and use it in GitHub Desktop.
Save m4rk3r/62f8dbcca58c6848dce2 to your computer and use it in GitHub Desktop.
Random + Mouse mapping
void setup(){
size(300,300);
}
void draw(){
fill(random(0,255),random(0,255),random(0,255));
rect(mouseX-15,mouseY-15,30,30);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment