How to save alphashape image as STL or CAD?
10 次查看(过去 30 天)
显示 更早的评论
How to save alphashape image as STL or CAD? can any share idea's?

0 个评论
采纳的回答
Sean de Wolski
2018-12-14
A = alphaShape(rand(10,2))
[T, P] = alphaTriangulation(A)
stlwrite(triangulation(T,P),'foo.stl')
6 个评论
Dmitrij Usov
2023-11-8
编辑:Dmitrij Usov
2023-11-8
A = alphaShape(rand(10,3));
[T, P] = boundaryFacets(A); % here
stlwrite(triangulation(T,P),'foo.stl');
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Bounding Regions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!