This C++ algorithm detects thin walls in a 3D mesh.
Follow these steps to build and run the C++ implementation:
-
Create a build directory:
mkdir build
-
Change into the build directory:
cd build
-
Run CMake to configure the build:
cmake ..
-
Build the project:
cmake --build . --config Release
-
Execute the algorithm:
./thin-walls <input_filepath> <thickness_threshold>
Replace <input_filepath>
and <thickness_threshold>
with the actual file paths and thickness values.
The algorithm takes a 3D mesh as input and detects thin walls based on the specified thickness threshold.
Contributions are welcome! If you'd like to contribute to this project, feel free to submit pull requests or open issues.
This project is licensed under the MIT License.