- /
-
perhaps the deadliest
on 8 Oct 2021
- 70
- 86
- 0
- 0
- 280
colormap(hsv)
A=meshgrid(linspace(0,2*pi,51),linspace(0,2*pi,51));
X=cos(A);
Y=sin(A);
for i=-25:25
R(i+26)=5*cos(asin(i/25));
end
for i=1:51
for j=1:25
X(j,i)=X(j,i)*R(j);
Y(j,i)=Y(j,i)*R(j);
end
end
Z=meshgrid(linspace(-5, 5, 51),linspace(-5,5,51))';
surf(X,Y,-Z,'edgecolor','m');
view(90,-15)
axis off