つぶやきProcessing (2025/9/15)
https://gyazo.com/e1437cb278b7350f3a88f014180a3c60 https://gyazo.com/00bd8bd26373517896979a10b53943a1 https://gyazo.com/0697ce1ca5d08671c41538d42bda4b2c
https://scrapbox.io/files/68c801c21bbc38df0c81602f.mp4
code:processing
//#つぶやきProcessing
float n, i, t;
void setup() {
size(800, 800);
background(0);
}
void draw() {
fill(0, 9);
square(-1, -1, 802);
stroke(-1);
noFill();
for (n=1; n<20; n++) {
beginShape();
for (i=0; i<3000; i+=5) {
curveVertex(i+800-t*400, t*200-i*noise(i/500, n, t));
}
endShape();
}
t+=.002;
}