宇宙的な何か (2024/11/6)
https://gyazo.com/b96086ec733b04cca2db797b5baf620a https://gyazo.com/d513a64cd415ce9d8a796cd9f49da9da https://gyazo.com/5f50608ada325297d59d4648a651cee0
https://scrapbox.io/files/672b74b05a292e37481465d3.mp4
code:processing
//#Processing
int n=50000, i;
float a[]=new floatn*3, r, t; void setup() {
size(800, 800, P3D);
for (i=0; i<n; i++) {
}
}
void draw() {
background(0);
camera(600*sin(r+=PI/300), 200, 600*cos(r), 0, 0, 0, 0, -1, 0);
noFill();
stroke(-1);
for (i=0; i<n; i++) {
}
t+=.01;
stroke(-1, 64);
sphere(300);
}