- /
-
Easter Egg
on 14 Oct 2021
- 8
- 65
- 3
- 0
- 243
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(lines(10));
axis equal off;
material shiny;
camlight;
shading interp;
lighting gouraud;
view([48 28]);