Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/calvin-l/marchingtetrahedrons

A tiny, simple implementation of the marching tetrahedrons algorithm.
https://github.com/calvin-l/marchingtetrahedrons

graphics marching-tetrahedron-algorithm opengl

Last synced: 2 months ago
JSON representation

A tiny, simple implementation of the marching tetrahedrons algorithm.

Awesome Lists containing this project

README

        

Marching Tetrahedrons Implementation

--------------------------------------------

This is an implementation of the "marching tetrahedrons"
algorithm for OpenGL. The project was written on Mac OS X,
but should work on Linux and Windows as well.

The implementation is not ultra-performance intensive, but
was instead written as an easy-to-understand demo.

Important files:
main.cpp program entry point
Isosurface.h parent class for renderable surfaces
Decimate.h declaration of the actual algorithm
Decimate.cpp implementation of the actual algorithm

To build the "MarchingTetrahedrons" executable (requires CMake):
mkdir build
cd build
cmake ..
cmake --build .