雷雨 (2025/9/12)
https://gyazo.com/8cdb68912045386be13d2d4f8fac3f4a https://gyazo.com/eb60f5e830380be4b4726a80f5ceb5b4 https://gyazo.com/22934e796073e19d3371427179991901
https://scrapbox.io/files/68c2ea019a1589d48529869e.mp4
今日の首都圏の雷雨は酷かった…電車が片っ端から止まってたし。
雨の勢いはこんなもんじゃないけど、この程度にしないと映像が荒れるので、ちょっとおとなしめに。
code:processing
//#Processing thunderstorm
int n=3000, i;
void setup() {
size(800, 800);
for (i=0; i<n*2; i++)ai=random(800); background(0);
}
void draw() {
noStroke();
if (random(200)<1)fill(#FFFF00);
else fill(0, 20);
square(0, 0, 800);
fill(-1, 99);
for (i=0; i<n; i++) {
if ((ai+n+=noise(i)*5)>800) { }
}
}