Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created October 31, 2012 23:27
Show Gist options
  • Save chikoski/3990616 to your computer and use it in GitHub Desktop.
Save chikoski/3990616 to your computer and use it in GitHub Desktop.
縦に振動する円(残像付き)
void setup(){
size(400, 400);
smooth();
noStroke();
background(0, 0, 0);
}
void draw(){
fill(0, 0, 0, 32);
rect(0, 0, width, height);
fill(255, 192, 0);
ellipse(width / 2, height / 2 + sin(frameCount * 0.05) * 100, 20, 20);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment