New in Wolfram
Mathematica
8: Dynamic Library Loading
◄
previous
|
next
►
Software Development
Used by
Mathematica
for External Libraries
Dynamic library loading is used by
Mathematica
to call external libraries, such as the tetrahedral mesh generation program
TetGen
.
In[1]:=
X
Needs["TetGenLink`"] cow = ExampleData[{"Geometry3D", "Cow"}]; pts = ExampleData[{"Geometry3D", "Cow"}, "VertexData"]; surface = TetGenConvexHull[pts]; Show[cow, Graphics3D[{Opacity[0.7], EdgeForm[{Opacity[0.3], White}], GraphicsComplex[pts, Polygon[surface]]}]]
Out[1]=