Created
September 17, 2013 09:56
-
-
Save dimkir/6592316 to your computer and use it in GitHub Desktop.
Created using Sketch2Tweet tool
This file contains 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, n, s=900; | |
void setup() { | |
size(s, s); | |
} | |
void draw() { | |
n=int(90+90*sin((i+=5)*.01)); | |
textSize(n); | |
fill(233<<n); | |
text(i/s, i%s-50, 99*(i/s)%s-n); | |
}//#p5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment