Skip to content

Instantly share code, notes, and snippets.

@keywordnew
Created September 13, 2019 18:04
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 keywordnew/1a19b357fe4795142b65c222d1140da5 to your computer and use it in GitHub Desktop.
Save keywordnew/1a19b357fe4795142b65c222d1140da5 to your computer and use it in GitHub Desktop.
p5 experiment
function setup() {
createCanvas(640, 480);
}
function draw() {
if (mouseIsPressed) {
fill(0);
} else {
fill(255);
}
ellipse(mouseX, mouseY, 80, 80);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment