つぶやきProcessing (2024/12/3)
https://gyazo.com/6b603d6a010035a782d5f849b12db6b5 https://gyazo.com/ee9011e63623a06b2d773183457f8168 https://gyazo.com/dc5ce652c82f8698da7151b2cfd542ba
https://scrapbox.io/files/674dcee1fe9bae78cd804d16.mp4
code:processing
//#つぶやきProcessing
float i, j, t;
void setup() {
size(800, 800, P3D);
colorMode(3);
}
void draw() {
background(0);
camera(400, 999, 600, 400, 300, 0, 0, 0, -1);
for (i=0; i<800; i+=3)for (j=0; j<800; j+=3) {
stroke(i%255, j/2, j/2);
strokeWeight(5);
point(i+j*j*sin(j/30+t*9)/1e4, j, 50*sin(j/99+t*5));
}
t-=.01;
}