从三维数据中重新构建模型
版本 11 中包括了先进的根据任意三维数据构建形体表面的功能.
In[1]:=
pointcloud =
ExampleData[{"Geometry3D", "StanfordBunny"}, "VertexData"];
Graphics3D[Point[RandomSample[pointcloud, 1000]]]
Out[1]=
重新构建一个可三维打印的斯坦福兔子.
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[%];