2008年5月6日 星期二

第2朵花

void setup() {
size(300, 400);
smooth();
}
void draw ()
{
translate(mouseX,mouseY);
smooth();
if (mousePressed == true) {
for( int i=0;i<24;i++)
{
rotate(PI/6);
strokeWeight(7);
stroke(random(0,255),random(0,255),random(0,255),50);
line(0, 0, 20, 0);
}
}
}

沒有留言: