Skip to content

Instantly share code, notes, and snippets.

@kellylougheed
Created September 5, 2018 05:09
Show Gist options
  • Save kellylougheed/399aee099b0d1ebdf3543f14ab099dfe to your computer and use it in GitHub Desktop.
Save kellylougheed/399aee099b0d1ebdf3543f14ab099dfe to your computer and use it in GitHub Desktop.
var hue;
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
hue = 0;
}
function draw() {
// background(220);
}
function mouseDragged() {
if (hue > 360) {
hue = 0;
} else {
hue += 10;
}
colorMode(HSL, 360);
noStroke();
fill(hue, 200, 200);
ellipse(mouseX, mouseY, 25, 25);
}
function keyPressed() {
if (keyCode == 82) {
hue = 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment