• Remix
  • Share
  • New Entry

on 15 Oct 2021
  • 37
  • 32
  • 0
  • 0
  • 214
% Remix from Daniel Pereira
[z,t] = meshgrid(linspace(1e-1,10,100),linspace(0,2*pi,1000));
s=sin(t+5);
c=cos(t+5);
r=log(z+5);
surf(r.*c,r.*s,z,z.^2,'edgecolor','g','edgealpha',0.025);
colormap winter;
axis equal off;
material shiny;
camlight;
lighting gouraud;
Remix Tree