お花見から一転 (2024/12/10)
https://gyazo.com/1b021280208a482c2f56a97ecca0e730 https://gyazo.com/b849c915ce4aa1c092c2af06d394661c https://gyazo.com/889e53bcc4c893a9a3915be6d95abd1b
https://scrapbox.io/files/67584528f4065b6d0b5beb91.mp4
前半は良い感じ…最初は山の中の神社、そして湖際で花見…なんだけど、途中から一気に筋肉組織とかの生体培養みたいな、ちょっと気色悪い感じに。
code:processing
//#Processing
float r, i, a, b, t, x, y, c=5, d=2, f=400, n;
void setup() {
size(800, 800, P3D);
strokeWeight(2);
}
void draw() {
background(0);
camera(f, f, f, 0, 0, 0, 0, 0, -1);
for (x=-f; x<f; x++)for (y=-f; y<f; y++) {
r=i=n=0;
a=x/f-1;
b=y/f;
while ((r*r+c*c*c*i*i<4)&n<256) {
t=r*r-i*i+a;
i=d*r*i+b;
r=t;
n++;
}
if (n<255) {
stroke(sq(n)%256, sq(n)%128, n);
} else {
stroke(0, 0, 180-c*50);
}
point(x, y, (sq(n)%256)/5);
}
if (c>-5)c-=.1;
else d*=1.01;
}