3Dデータからモデルを再構築する
バージョン11には任意の3Dデータから曲面を再構築する最新機能が含まれている.
In[1]:=
pointcloud = 
  ExampleData[{"Geometry3D", "StanfordBunny"}, "VertexData"];
Graphics3D[Point[RandomSample[pointcloud, 1000]]]Out[1]=

3D印刷可能なスタンフォードバニーを再構築する.
In[2]:=
ListSurfacePlot3D[pointcloud, MaxPlotPoints -> 50, Axes -> None, 
 Boxed -> False, Mesh -> None]Out[2]=

モデルを印刷する.
In[3]:=
ListSurfacePlot3D[pointcloud, MaxPlotPoints -> 50, Axes -> None, 
 Boxed -> False, Mesh -> None];
Printout3D[%];