• Remix
  • Share
  • New Entry

on 27 Oct 2021
  • 8
  • 33
  • 0
  • 0
  • 276
text(.5,.5,{'STAR WARS','Episode IV','A NEW HOPE'},'FontSi',40,'ho','center');
f=getframe(gca);
I=1-f.cdata(end:-1:1,:,1);
f=@(x)linspace(0,x,size(I,x));
[X,Y]=meshgrid(f(2),f(1));
contourf(X.*(1-Y)+Y,Y,I,'edgec','n');
colormap(gray.*[1 1 0]);
set(gcf,'color','k');
axis off;
axis([.4 1.6 0 1]);
Remix Tree