Created
February 2, 2015 13:07
-
-
Save gregberger/df9779c9c2b9984f3a4a to your computer and use it in GitHub Desktop.
Bitshifting experiment
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[i]=i%value<<f<<16|value; | |
color c =0; | |
pixels[i] = 100 << 16 | 25+(i*f) << 8 | 250 ; | |
} | |
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