How to save alphashape image as STL or CAD?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Selva Karna
el 14 de Dic. de 2018
How to save alphashape image as STL or CAD? can any share idea's?

0 comentarios
Respuesta aceptada
Sean de Wolski
el 14 de Dic. de 2018
A = alphaShape(rand(10,2))
[T, P] = alphaTriangulation(A)
stlwrite(triangulation(T,P),'foo.stl')
6 comentarios
Dmitrij Usov
el 8 de Nov. de 2023
Editada: Dmitrij Usov
el 8 de Nov. de 2023
A = alphaShape(rand(10,3));
[T, P] = boundaryFacets(A); % here
stlwrite(triangulation(T,P),'foo.stl');
Más respuestas (1)
Ver también
Categorías
Más información sobre Bounding Regions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!