分身の術 (2025/9/29)
https://gyazo.com/ece7a10f81f31f78e77b694c454edeaf https://gyazo.com/0b5233524caef63da1f33f127b814ba7 https://gyazo.com/397800658a5dadd502052870cbd66fd9
https://scrapbox.io/files/68da7edee1329c610a7832be.mp4
code:processing
//#つぶやきProcessing
float i, t;
void setup() {
size(800, 800);
}
void draw() {
background(0);
noStroke();
fill(-1);
translate(400, 0);
for (i=0; i<800; i+=10) {
arc(150*sin(t*i/100+t), i, i*sin(i/800*PI), 20, PI, TAU);
}
t+=PI/200;
}