Skip to content

Instantly share code, notes, and snippets.

@claytical
Created January 20, 2016 16:45
Show Gist options
  • Save claytical/c992b2e5b7f139bd435e to your computer and use it in GitHub Desktop.
Save claytical/c992b2e5b7f139bd435e to your computer and use it in GitHub Desktop.
Frame Count for Color
var r = 0;
function setup() {
createCanvas(400,400);
}
function draw() {
background(255);
r = frameCount%255;
fill(r, 0, 0);
ellipse(width/2, height/2, 50, 50);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment