How do you export a plot into a stl file?
7 views (last 30 days)
Show older comments
t = [0:0.1:2*pi] a = sin(t); plot(t,a)
Trying to export this sin plot as an stl. file. I may need to make it 3d first. Any ideas?
0 Comments
Answers (1)
voxey
on 14 Dec 2018
DT = delaunayTriangulation(xc,yc,z);
sha=alphaShape(xc,yc,z);
[T,Xb] = freeBoundary(DT);
TR = triangulation(T,Xb);
stlwrite(TR,'yourstlname.stl',text)
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!