mod_geo-tp/external/MeshReconstruction
papush! fc4bd15ba6 fix mesh reconstruction 2022-01-05 15:59:18 +01:00
..
demo add MeshReconstruction dep and some test meshes 2021-11-25 15:01:04 +01:00
lib fix mesh reconstruction 2022-01-05 15:59:18 +01:00
.gitignore add MeshReconstruction dep and some test meshes 2021-11-25 15:01:04 +01:00
CMakeLists.txt add MeshReconstruction dep and some test meshes 2021-11-25 15:01:04 +01:00
Readme.md add MeshReconstruction dep and some test meshes 2021-11-25 15:01:04 +01:00
numberings.png add MeshReconstruction dep and some test meshes 2021-11-25 15:01:04 +01:00
overview.png add MeshReconstruction dep and some test meshes 2021-11-25 15:01:04 +01:00

Readme.md

MeshReconstruction

This is a small library that can reconstruct a triangle mesh from a signed distance function using the Marching Cubes algorithm and export it to a file in the obj format.

The library is self-contained and has no dependencies. The library is fast due to precomputed lookup tables and a narrow-band approach which excludes a lot of marching cubes that are far away from the surface.

The library requires C++14 and has been tested under Visual Studio 2017 and Windows 10 but should port to other systems without major problems.

The library can be used under the terms of the MIT License.

Overview