• Remix
  • Share
  • New Entry

on 31 Oct 2021
  • 5
  • 56
  • 0
  • 0
  • 218
% Made on a lonely Sunday night...
[th,r]=meshgrid((0:0.5:360)*pi/180,0:0.01:1);
[x,y]=pol2cart(th,r);
z=(0.3*r.^2).*cos(2*th);
surf(x,y,z,'edgecolor','none')
set(gca,'XColor', 'none','YColor','none','ZColor','none')
grid off
view(-112,18)
colormap pink
axis equal
Remix Tree