フィルターのクリア

How do you export a plot into a stl file?

12 ビュー (過去 30 日間)
Sophia Smith
Sophia Smith 2018 年 3 月 18 日
回答済み: voxey 2018 年 12 月 14 日
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?

回答 (1 件)

voxey
voxey 2018 年 12 月 14 日
DT = delaunayTriangulation(xc,yc,z);
sha=alphaShape(xc,yc,z);
[T,Xb] = freeBoundary(DT);
TR = triangulation(T,Xb);
stlwrite(TR,'yourstlname.stl',text)

カテゴリ

Help Center および File ExchangeSTL (STereoLithography) についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by