在本地打印机直接打印
版本 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];
