‹›주요 기하학적 기능파일로부터의 메쉬
버전 11에서는 모든 표준 형식으로부터 3D 형상의 가져오기 및 내보내기 기능이 확장되었습니다.
Import["ExampleData/seashell.stl"]
STL 파일 형식을 가져오는데 필요한 시간을 비교합니다. 실험은 Intel Core 2 Duo 3.06 GHz Mac OS X Lion 시스템에서 1000초의 시간 제한을 두고 이루어졌습니다. 그래프 아래의 숫자는 Mathematica 10에 비해 Mathematica 11이 얼마나 빠른지를 나타냅니다.
전체 Wolfram 언어 입력 표시하기
names = {"MoebiusStrip", "UtahTeapot", "Seashell", "KleinBottle",
"Torus", "VikingLander", "Tree", "Tugboat", "StanfordBunny"};
data = ExampleData[{"Geometry3D", #}, "Region"] & /@ names;
getTime[reg_] := Block[{file},
Export[file = FileNameJoin[{$TemporaryDirectory, "test.stl" }],
reg];
First[AbsoluteTiming[Import[file];]]];
getTime /@ data