• Remix
  • Share
  • New Entry

on 4 Oct 2021
  • 3
  • 43
  • 1
  • 0
  • 279
rng default;
y = rand([52 3]);
subplot(1,3,1)
tetramesh(delaunayTriangulation(y),'FaceAlpha',0.3);
colormap(prism)
axis off
subplot(1,3,2)
tetramesh(delaunayTriangulation(y.*[1 2 1]),'FaceAlpha',0.3);
axis off
subplot(1,3,3)
tetramesh(delaunayTriangulation(y.*[1 4 1]),'FaceAlpha',0.3);
axis off
Remix Tree