Sunday, November 06, 2011
Kornelis 2 Version 2
// just type here
// and click "save" when your done
void setup() {
size(500,500);
background(0);
}
void draw() {
translate(255,255);
background(0,10);
for(int i=0; i < 360; i++) {
fill(i,360-i,mouseX,40);
rect(0,10+frameCount%100,mouseX,100);
rotate(i);
}
}
// and click "save" when your done
void setup() {
size(500,500);
background(0);
}
void draw() {
translate(255,255);
background(0,10);
for(int i=0; i < 360; i++) {
fill(i,360-i,mouseX,40);
rect(0,10+frameCount%100,mouseX,100);
rotate(i);
}
}
comments
loading...
Add a comment: