• Remix
  • Share
  • New Entry

on 18 Oct 2021
  • 9
  • 67
  • 0
  • 0
  • 238
[z,t] = meshgrid(linspace(-1,1,30));
t = t*pi;
x = (abs(z).^1.8+0.1).*cos(t);
y = (abs(z).^1.8+0.1).*sin(t);
mesh(x,y,z,1-z.^2,'facealpha',0); hold on; colormap(parula);
plot3([0 0],[0 0],[-1 1]*1.5,'-w');
axis equal off;
view(5,10);
set(gcf,'color','k');
Remix Tree