Created
January 20, 2016 16:45
-
-
Save claytical/c992b2e5b7f139bd435e to your computer and use it in GitHub Desktop.
Frame Count for Color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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