Skip to content

Instantly share code, notes, and snippets.

@kellylougheed
Created September 5, 2018 04:59
Show Gist options
  • Save kellylougheed/a0b66000532efae5f6badfd9c7fc3d01 to your computer and use it in GitHub Desktop.
Save kellylougheed/a0b66000532efae5f6badfd9c7fc3d01 to your computer and use it in GitHub Desktop.
function setup() {
createCanvas(400, 400);
}
function draw() {
// background(220);
}
function mouseDragged() {
noStroke();
fill(220);
ellipse(mouseX, mouseY, 50, 50);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment