- /
-
Get to the point (of a random Delaunay)
on 25 Oct 2022
- 16
- 32
- 0
- 1
- 209
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,c1:-2:1,'FaceAlpha',0.1)
set(gca,'XColor', 'none','YColor','none', 'ZColor', 'none')