ローカルプリンタで直接印刷する
高度に自動化されたバージョン11の新関数Printout3Dを使うと,ローカルのプリンタで直接印刷することができる.
In[1]:=
model = Import["http://exampledata.wolfram.com/vase.stl"]
Out[1]=
使用中のシステムでのデフォルトビューアアプリケーションを使う.
In[2]:=
Printout3D[model]
Out[2]=
Curaスライサーにアップロードする.
In[3]:=
cura = StringTemplate[
"/Applications/Cura/Cura.app/Contents/MacOS/Cura `file`"];
In[4]:=
Printout3D[model, Printout3DPreviewer -> cura];