27



int angle =0;

void setup(){
size(400,600);
background(255);
smooth();
noStroke();
fill(0,102);
}

void draw(){
if(mousePressed == true){
angle += 10;
float val = cos(radians(angle)) * 6.0;
for(int a =0; a < 360; a += 75){
float xoff = cos(radians(a)) * val;
float yoff = sin(radians(a)) * val;
fill(random(255),random(255),random(255));
ellipse(mouseX + xoff, mouseY + yoff, val,val);
}
fill(255);
ellipse(mouseX,mouseY,2,2);
}
}

コメント