Convert convexhull to stl file
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
CHANDRABHAN Singh
am 25 Jan. 2022
Kommentiert: CHANDRABHAN Singh
am 24 Feb. 2022
I have a set of 3d coordiante points. How can i convert the convert the convex hull into stl file.
p = [113.6466 111.8984 112.4205 108.7094 113.4748 111.4158 113.5684 ];
q =[ 17.7346 12.7025 16.5175 18.2938 17.4362 18.4552 16.3848 ];
r = [56.0310 62.7279 56.1565 59.7253 66.1007 65.5010 56.0682 ];
k= convhull(p,q,r);
trisurf(k,p,q,r);
0 Kommentare
Akzeptierte Antwort
KSSV
am 25 Jan. 2022
p = [113.6466 111.8984 112.4205 108.7094 113.4748 111.4158 113.5684 ];
q =[ 17.7346 12.7025 16.5175 18.2938 17.4362 18.4552 16.3848 ];
r = [56.0310 62.7279 56.1565 59.7253 66.1007 65.5010 56.0682 ];
k= convhull(p,q,r);
trisurf(k,p,q,r);
tr = triangulation(k,[p' q' r']) ;
stlwrite(TR,'test.stl')
3 Kommentare
耀 谷
am 23 Feb. 2022
Can your code work normally? I was prompted to use fileparts incorrectly when running the code
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Management finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!