├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.MPL2 ├── README.md ├── cmake └── FindLIBIGL.cmake ├── main.cpp ├── pig-head-Q.dmat └── pig-head.ply /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/LICENSE.MPL2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindLIBIGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/cmake/FindLIBIGL.cmake -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/main.cpp -------------------------------------------------------------------------------- /pig-head-Q.dmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/pig-head-Q.dmat -------------------------------------------------------------------------------- /pig-head.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinBarill/fast-winding-number-soups/HEAD/pig-head.ply --------------------------------------------------------------------------------