ART CODE 3
void setup() {
size(1280,720);
frameRate(10);
}
void draw () {
background(#aaaaaa);
fill(255);
noStroke();
for(int i = 0; i < 100; i++) {
println(i);
fill(random(255));
rect(random(width),random(height),i*1, i*1);
}
}
void setup() {
size(1280,720);
frameRate(10);
}
void draw () {
background(#aaaaaa);
fill(255);
noStroke();
for(int i = 0; i < 100; i++) {
println(i);
fill(random(255));
rect(random(width),random(height),i*1, i*1);
}
}
Comments
Post a Comment