huxingyi/autoremesher
原文摘要
Automatic quad remeshing tool AutoRemesher AutoRemesher is a cross-platform automatic quad remeshing tool that converts high-polygon meshes into clean quad-based topology. It is built on top of libraries: Geogram , libigl , isotropicremesher and others . Buy me a coffee for staying up late coding 😃 Getting Started These instructions will get you a copy of AutoRemesher up and running on your local machine for development. Prerequisites C++ compiler with C++14 support (GCC, Clang, or MSVC) Qt 5.15.2 TBB (Intel Threading Building Blocks) CMake 3.12 or later (only needed on Windows to build TBB from source) Building Linux (Ubuntu/Debian) # Install Qt and build tools sudo apt install build-essential qt5-qmake qtbase5-dev qttools5-dev-tools libqt5svg5-dev libqt5multimedia5-dev # Install TBB and OpenGL sudo apt install libtbb-dev libgl1-mesa-dev # Clone and build git clone https://github.com/huxingyi/autoremesher.git cd autoremesher qmake make -j$(nproc) Fedora: sudo dnf install gcc-c++ qt5-qtbase-devel qt5-qttools-devel tbb-devel mesa-libGL-devel Windows (Visual Studio 2022) Install Visual Studio 2022 with Desktop development with C++ workload. Install CMake (required to build TBB from…