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[%];
