- /
-
Easter egg 2
on 14 Oct 2021
- 10
- 47
- 1
- 0
- 240
a=2.5;
b=1;
k=0.4;
[t,z]=meshgrid(linspace(0,2*pi,1000),linspace(-b,b,1000));
r=sqrt((1-b*z.^2)/a./(1+k*z));
surf(r.*cos(t),r.*sin(t),z,'edgecolor','none');
colormap(jet(7));
axis equal off;
material shiny;
camlight;
shading interp;
lighting gouraud;
view([48 28]);