2008年5月12日 星期一

花~

void setup()
{size(800, 800);
background(255);
smooth();
}
void draw()
{smooth();if (mousePressed == true){translate(mouseX, mouseY);
for (int i = 0; i < 50; i++) {strokeWeight(5);rotate(PI/15);
stroke(random(0,255),random(0,255),random(0,255),200);
line(0, 0, 80,0);
}
}
}

沒有留言: