• Remix
  • Share
  • New Entry

on 27 Oct 2022
  • 5
  • 35
  • 0
  • 0
  • 205
%remixed and inspired by Miranda Lynch via https://www.mathworks.com/matlabcentral/communitycontests/contests/5/entries/12298
rng(10);
x = rand([25 1]);
y = rand([25 1]);
z = rand([25 1]);
DT = delaunayTriangulation(x,y,z);
c = size(DT); c1 = 2*c(1);
tetramesh(DT,'FaceColor','#efb7b7','FaceAlpha',0.2)
axis off
set(gcf,'color','#fdf6f6')
hold on
Remix Tree