• Remix
  • Share
  • New Entry

on 30 Oct 2021
  • 1
  • 35
  • 0
  • 0
  • 277
p=353;
l=rand(p);
imagesc(l)
colormap hot
k=getframe;
% axis off
r=k.cdata;
o=1:p;
r=r(o,o,1);
g=[];
for s=o
for k=o
f(k,:)=circshift(r(p,:),round(20*(rand-.5)),2)+k/6-5;
end
g=[g f];
end
[x,y,z]=sphere(p);
surf(x,y,z,f(o,o),"EdgeColor",'n')
axis off 'k'
colormap(colorcube.*lines)
caxis([0 3*p])
view(4,90)
zoom(1.005)
Remix Tree