Skip to content

Instantly share code, notes, and snippets.

@kunishi
Last active October 7, 2015 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunishi/3141239 to your computer and use it in GitHub Desktop.
Save kunishi/3141239 to your computer and use it in GitHub Desktop.
void setup() {
size(1000, 1000);
colorMode(HSB, 100);
background(99);
noStroke();
}
void draw() {
fill(random(0, 100), random(50, 100), random(80, 100));
ellipse(mouseX, mouseY, mouseX - pmouseX, mouseY - pmouseY);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment