• Remix
  • Share
  • New Entry

on 26 Oct 2021
  • 7
  • 83
  • 1
  • 0
  • 178
x = [0 1 rand(1,50) 1 0];
y = [0 0 rand(1,50) 1 1];
DT = delaunay(x,y);
for i=1:length(DT)
a=DT(i,:);
n=randi([1,64]);
patch(x(a),y(a),rand(3,1),'edgec','none');
end
axis off;
colormap(1-jet.^3);
Remix Tree