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 s=600; | |
| int h=1; | |
| void setup() { | |
| size(s, s); | |
| stroke(0); | |
| colorMode(HSB, 255); | |
| } | |
| void draw() { | |
| fade(#FFFFFF, 15); | |
| if (h<s) { |
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
| This is my code to post lalalala |
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
| This is my code to post lalalala |
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 s=600; | |
| int h=1; | |
| void setup() { | |
| size(s, s); | |
| stroke(0); | |
| } | |
| void draw() { | |
| if (h<s) { | |
| translate(random(s), random(s)); | |
| rotate(h); |
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 s=600; | |
| int h=1; | |
| void setup() { | |
| size(s, s); | |
| stroke(0); | |
| } | |
| void draw() { | |
| if (h<s) { | |
| translate(random(s), random(s)); | |
| rotate(h); |
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 s=600; | |
| int h=1; | |
| void setup() { | |
| size(s, s); | |
| stroke(0); | |
| colorMode(HSB, 255); | |
| } | |
| void draw() { | |
| if (h<s) { | |
| translate(random(s), random(s)); |
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 s = 600; | |
| int h = 1; | |
| void setup() { | |
| size (s, s); | |
| stroke(0, 20); | |
| colorMode(HSB,255); | |
| } | |
| void draw() { | |
| if (h<s) { | |
| translate(s/2+h, s/2+h); |
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 w=800; | |
| float a, b=800, z=10, y=0; | |
| void setup() { | |
| size(w, w); | |
| colorMode(HSB, 255); | |
| } | |
| void draw() { | |
| a=a+5; | |
| z=10*int(random(w/10)); | |
| stroke(randomColor()); |
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
| //#tuelit13 | |
| int h = 0; | |
| // max text size | |
| int C_MAX_SIZE = 48; | |
| void setup() { | |
| size(250, 250); | |
| textFont(createFont("Arial", C_MAX_SIZE)); | |
| colorMode(HSB,255); | |
| } |
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
| float s=200, x, y, a=s, b; | |
| void setup() { | |
| size(400, 400); | |
| colorMode(HSB, 255); | |
| } | |
| void draw() { | |
| x=random(s*2); | |
| y=random(s*2); | |
| if (sq(x-s)+sq(y-s)<sq(s)) { | |
| strokeWeight(random(2,8)); |