Wolfram言語

主な幾何学的機能

ファイルからのメッシュ

バージョン11では,すべての標準形式からの三次元形状のインポートとエキスポートの機能が拡張されている.

In[1]:=
Click for copyable input
Import["ExampleData/seashell.stl"]
Out[1]=

STLファイル形式をインポートするのに必要な時間を比べる.実験は,Intel Core 2 Duo 3.06 GHz Mac OS X Lionシステムで,制限時間を1000秒として行った.グラフの下の数字は,Mathematica 10と比べて,Mathematica 11がどのくらい速いかを示す.

完全なWolfram言語入力を表示する
In[2]:=
Click for copyable input
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
Out[40]=

関連する例

de en es fr ko pt-br ru zh