rotate_ellipse01

void setup() {
  size(500, 500);
  colorMode(HSB, 360, 100, 100);
  smooth();
  noStroke();
  background(0, 0, 100);
}

void draw() {
  translate(width/2, height/2);
  rotate(frameCount);
  fill(0, 0, 100);
  rect(0, 0, width, height);
  fill(frameCount%360, 100, 100);
  ellipse(mouseX-width/2, mouseY-height/2, 100, 100);
  ellipse(mouseX*2, mouseY*2, 100, 100);
}

rotateframeCountを入れたら,派手なのができた.それまではずっと地味な感じだったので,いきなり動き出すとびっくりする.発表前の息抜き.