How to save alphashape image as STL or CAD?
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to save alphashape image as STL or CAD? can any share idea's?

0 Commenti
Risposta accettata
Sean de Wolski
il 14 Dic 2018
A = alphaShape(rand(10,2))
[T, P] = alphaTriangulation(A)
stlwrite(triangulation(T,P),'foo.stl')
6 Commenti
Dmitrij Usov
il 8 Nov 2023
Modificato: Dmitrij Usov
il 8 Nov 2023
A = alphaShape(rand(10,3));
[T, P] = boundaryFacets(A); % here
stlwrite(triangulation(T,P),'foo.stl');
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Bounding Regions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!