• Remix
  • Share
  • New Entry

on 28 Oct 2021
  • 6
  • 78
  • 2
  • 0
  • 267
[x,y]=cylinder(1,12);
plot(x,y,'py','markers',25,'markerf','y');
axis equal off;
set(gcf,'color','b');
f=getframe(gcf);
f=f.cdata;
[x,y]=meshgrid(1:size(f,2),1:size(f,1));
surf(x,y,25*sin((x*2+y)*.015),f,'edgec','n');
camlight headlight;
axis equal off;
set(gcf,'color','w');
view([20 40]);
Remix Tree