Saturday, March 13, 2010
Paulv6
// just type here
// and click "save" when your done
void setup() {
size(300, 300);
}
void draw() {
background(20,10,0);
fill(100, 10, 130);
rotate(mouseX/100);
for(int i=0; i<10; i++) {
fill(100,10,130);
ellipse(i* 5 + 200, i*5 -100, mouseX, mouseY);
fill(255, 10, 10);
ellipse(i*2 + 100,i*3-50,mouseX * 0.5, mouseY * 0.7);
}}
// and click "save" when your done
void setup() {
size(300, 300);
}
void draw() {
background(20,10,0);
fill(100, 10, 130);
rotate(mouseX/100);
for(int i=0; i<10; i++) {
fill(100,10,130);
ellipse(i* 5 + 200, i*5 -100, mouseX, mouseY);
fill(255, 10, 10);
ellipse(i*2 + 100,i*3-50,mouseX * 0.5, mouseY * 0.7);
}}