Saturday, March 13, 2010
sectchmaniav3
// just type here
// and click "save" when your done
void setup(){
size(300,300);
}
void draw (){
background (255,10,10);
for(int i=0; i<80; i++){
fill (mouseY,200,mouseX,20);
rotate(1.1);
ellipse(150, 150,mouseX,150);
}
for (int j=0; j<10; j=j+2) {
strokeWeight(10);
stroke(random(5),mouseY,mouseX);
fill (random(0,255),180,mouseY,mouseY,10);
rotate(1.2);
rect (56,46,55,mouseX);
}
}
// and click "save" when your done
void setup(){
size(300,300);
}
void draw (){
background (255,10,10);
for(int i=0; i<80; i++){
fill (mouseY,200,mouseX,20);
rotate(1.1);
ellipse(150, 150,mouseX,150);
}
for (int j=0; j<10; j=j+2) {
strokeWeight(10);
stroke(random(5),mouseY,mouseX);
fill (random(0,255),180,mouseY,mouseY,10);
rotate(1.2);
rect (56,46,55,mouseX);
}
}