‹›主な幾何学的機能ファイルからのメッシュ
バージョン11では,すべての標準形式からの三次元形状のインポートとエキスポートの機能が拡張されている.
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