Ailurus
Ailurus

Reputation: 731

Create a tetrahedral mesh from a closed triangular mesh

I'm looking for an algorithm (or implementation) to create a tetrahedral mesh from a closed (i.e. without holes) 3D triangular mesh.

The best solution would be an open source application that can import mesh files (e.g. OBJ, STL and VTK), display them, and provide an option to tetrahedralize the mesh. But I'm also fine with command line tools, or just outlines of an algorithm.

Some background — I'm using Blender on a Linux system to design the surface meshes. Eventually I plan to implement a tetrahedralization algorithm in either Python or MATLAB.

I already stumbled upon a few application names while searching for a good mesher, but so far I don't have any concrete results. Any information on relevant papers, algorithms or implementations is therefore most welcome!

Applications found mentioned so far:

A few relevant terms:

Upvotes: 5

Views: 4128

Answers (1)

BrunoLevy
BrunoLevy

Reputation: 2623

You may use the GEOGRAM software that I'm developping:

http://alice.loria.fr/software/geogram/doc/html/index.html (it supports STL and OBJ file format).

Under the scene, it uses tetgen. It also has visualization with OpenGL.

Upvotes: 2

Related Questions