Skip to content

Instantly share code, notes, and snippets.

@Tdrj2716
Created November 1, 2020 11:01
Show Gist options
  • Save Tdrj2716/ff97939a1157752e6113865f67231a63 to your computer and use it in GitHub Desktop.
Save Tdrj2716/ff97939a1157752e6113865f67231a63 to your computer and use it in GitHub Desktop.
数行のProcessingのコードからどんなことができるかを紹介するためのサンプルコード
void setup(){
size(400, 300);
}
void draw(){
background(0);
fill(255);
ellipse(mouseX, mouseY, 10, 10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment