- /
-
99 luftballons
on 23 Oct 2021
- 11
- 60
- 0
- 0
- 278
rng(95) % the sky is sensistive pull of random vals
% Jenny Bosten's cloudy sky, modified to decrease required chars
Q=0:.646:328;
r=hypot(Q,Q'-90);
s=(285-r)/285;
image(cat(3,s/3+.1,s/2+.2,s/3+.6),AlphaData=5E4*abs(ifft2(r.^-1.7.*cos(6*rand(508)))));
% Add 99 luftballons, on their way to the horizon
[X,Y,Z]=sphere(99);
hold
for i=1:99
z=exp(4*rand)+2;
g=(80-z)/2;
surf(3*X+randn*g+258,4*Z+randn*g+258,3*Y+z,FaceC='r',EdgeA=0);
end
axis equal
camva(2)
light