Created
February 2, 2015 12:52
-
-
Save gregberger/2bf86f7ee8ac81275ece to your computer and use it in GitHub Desktop.
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
int i, f=0; | |
int value=2; | |
int s=500; | |
void setup(){ | |
size(s,s); | |
} | |
void draw() { | |
loadPixels(); | |
while (++i < (s*s)) { | |
f=frameCount; | |
pixels[(int)random(i)]=i%value<<f<<16|value; | |
} | |
updatePixels(); | |
i=0; | |
} | |
void keyPressed(){ | |
if(key=='a') value*=2; | |
println(value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment