├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── apps ├── 4dface.cpp └── helpers.hpp ├── appveyor.yml ├── cmake └── FindEigen3.cmake └── initial_cache.cmake.template /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/README.md -------------------------------------------------------------------------------- /apps/4dface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/apps/4dface.cpp -------------------------------------------------------------------------------- /apps/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/apps/helpers.hpp -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/cmake/FindEigen3.cmake -------------------------------------------------------------------------------- /initial_cache.cmake.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrikhuber/4dface/HEAD/initial_cache.cmake.template --------------------------------------------------------------------------------