generate triangular mesh starting from the external nodes (rx3) of a circle
1 回表示 (過去 30 日間)
古いコメントを表示
HI! I should generate a triangular mesh starting from the external nodes (rx3 matrix) of a circle arranged in space.
load('V.mat')
figure
plot3(V(:,1),V(:,2),V(:,3),'r.','Markersize',5)
grid on
xlabel('x')
ylabel('y')
zlabel('z')
view([15,50,30])
axis equal
採用された回答
Matt J
2023 年 9 月 25 日
load V
V=num2cell(V,1);
[x,y,z]=deal(V{:});
trisurf(delaunay(x,y), x,y,z)
2 件のコメント
Bruno Luong
2023 年 9 月 25 日
load V;
stlwrite(triangulation(delaunay(V(:,[1 2])),V),'mycircle.stl')
その他の回答 (1 件)
Bruno Luong
2023 年 9 月 25 日
編集済み: Bruno Luong
2023 年 9 月 25 日
load V;
n=size(V,1); % 360
stlwrite(triangulation([ones(n-2,1) (2:n-1)' (3:n)'],V),'mycircle.stl')
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!