つぶやきProcessing その2 (2025/9/15)
https://gyazo.com/b71b97547b51f018bfc39751ed954d4d https://gyazo.com/5282096fa1dfe79ab62855f07d119f7a https://gyazo.com/816b570c04f4d9d899966b38750a7978
https://scrapbox.io/files/68c807593da4d5fd724c45cf.mp4
code:processing
//#つぶやきProcessing
float n, i, t;
void setup() {
size(800, 800);
background(0);
}
void draw() {
fill(0, 5);
square(-1, -1, 802);
stroke(-1);
noFill();
translate(400, 400);
for (n=1; n<20; n++) {
rotate(sin(t/9)/3);
beginShape();
for (i=0; i<500; i+=5)curveVertex(i, -i*noise(i/500, n, t));
endShape();
}
t+=.004;
}