つぶやきProcessing (2025/9/29)
https://gyazo.com/6dc28e7c567ead0442e43dd351cf785a https://gyazo.com/1642dec9d19595423961ee548a393457 https://gyazo.com/1310bb5dbe80b46e22935608f107a312
https://scrapbox.io/files/68da890bcf7d7e31e7c5b2b9.mp4
code:processing
//#つぶやきProcessing
float i, t;
void setup() {
size(800, 800);
colorMode(HSB);
}
void draw() {
background(0);
noStroke();
for (i=0; i<800; i+=9) {
push();
rotate(sin(i/40+t)/(10+9*cos(t)));
fill(i%256, 255, 255);
arc(400+50*sin(i/40+t), i, 400*abs(sin(i/400*PI+t)), 9, PI, TAU);
pop();
}
t+=PI/500;
}