- /
-
shattered glass
on 13 Oct 2021
- 4
- 26
- 0
- 0
- 252
figure('Color','k');
hold;
for i=1:1000
x=linspace(i,i^1.1);
y=i^5*x;
for j = [1 -1]
for k = [1 -1]
plot((j*x.^(sqrt(rand()))),k*y,'.w');
plot((j*x.^(sqrt(rand()))),k*y,'.k','MarkerSize',0.1);
plot((j*x.^(sqrt(rand())))/2,k*y/2,'.k','MarkerSize',0.1);
end
end
end
axis off;