├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples ├── PRefToMotion_example.png └── pref_motion_example.nk ├── gizmos ├── CMakeLists.txt └── PRefMotionWarp.gizmo ├── headers └── nanoflann.hpp └── src ├── CMakeLists.txt └── PRefToMotion.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/README.md -------------------------------------------------------------------------------- /examples/PRefToMotion_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/examples/PRefToMotion_example.png -------------------------------------------------------------------------------- /examples/pref_motion_example.nk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/examples/pref_motion_example.nk -------------------------------------------------------------------------------- /gizmos/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | install(FILES PRefMotionWarp.gizmo DESTINATION ${CMAKE_INSTALL_PREFIX}) -------------------------------------------------------------------------------- /gizmos/PRefMotionWarp.gizmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/gizmos/PRefMotionWarp.gizmo -------------------------------------------------------------------------------- /headers/nanoflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/headers/nanoflann.hpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/PRefToMotion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterkeech/PRefToMotion/HEAD/src/PRefToMotion.cpp --------------------------------------------------------------------------------