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 x=-90, a, b, y; | |
int w=2060; | |
void setup() { | |
size(w/3, w/3); | |
background(255); | |
colorMode(HSB,255); | |
} | |
void draw() { | |
a=b; | |
b=90*int(random(w/90)); |
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 x=-90, a, b, y; | |
int w=2060; | |
void setup() { | |
size(w/3, w/3); | |
background(255); | |
colorMode(HSB,255); | |
} | |
void draw() { | |
a=b; | |
b=90*int(random(w/90)); |
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
void setup() { | |
size(800, 600); | |
fill(255, 9); | |
noStroke(); | |
colorMode(HSB, 255); | |
} | |
void draw() { | |
fill(0, 10); | |
rect(0, 0, 800, 600); | |
float r=random(-50, 50); |
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
void setup() { | |
size(800, 600); | |
fill(255, 9); | |
noStroke(); | |
colorMode(HSB, 255); | |
} | |
void draw() { | |
fill(0, 10); | |
rect(0, 0, 800, 600); | |
float r=random(-50, 50); |
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 x=-90, a, b, y; | |
int w=2060; | |
void setup() { | |
size(w/3, w/3); | |
background(255); | |
} | |
void draw() { | |
a=b; | |
b=90*int(random(w/90)); | |
line(a, b, x, y); |
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=1000, i; | |
float a=0; | |
void setup() { | |
size(w, w/2); | |
stroke(25); | |
} | |
void draw() { | |
for (i=0;i<w;i+=99) { | |
strokeWeight(i%5); | |
line(1, i, w/2, 0+a); |
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 x, y; | |
int[] z= { | |
-4, 4 | |
}; | |
void setup() { | |
size(s, s); | |
background(0); | |
stroke(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
int s=600; | |
int x, y; | |
int[] z= { | |
-4, 4 | |
}; | |
void setup() { | |
size(s, s); | |
background(0); | |
stroke(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
int s=600; | |
int x, y; | |
int[] z= { | |
-4, 4 | |
}; | |
void setup() { | |
size(s, s); | |
background(0); | |
stroke(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 x=-90, a, b, y; | |
int w=2060; | |
void setup() { | |
size(w/3, w/3); | |
background(255); | |
} | |
void draw() { | |
a=b; | |
b=90*int(random(w/90)); | |
line(a, b, x, y); |