A header-only C++ library for operating on 3d model vertex data.
- Spatial and connectivity queries
- Transferring properties like skin weights
- Drop files from /include/ into somewhere your project can see them
- include "vert_db/vert_db.h" and use vert_db for basic query functionality
- include "vert_db/transfer_utils.h" and use transfer_db for doing transforms on data.
- Check out /tests/. for interesting use cases.
- Download and install premake5 (https://premake.github.io/)
- Download Catch2 (https://github.com/catchorg/Catch2) and place the header-only version in /external/.
- Run premake.bat
- Open /_build/vert_db.sln and compile solution.
- Run /_Bin/(config)/(platform)/bin/vert_db-test.exe to validate changes.