├── .gitattributes ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── app_invk.cpp ├── assets ├── arial.bin └── arial.tga ├── joints.cpp └── joints.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/.gitattributes -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/README.md -------------------------------------------------------------------------------- /app_invk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/app_invk.cpp -------------------------------------------------------------------------------- /assets/arial.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/assets/arial.bin -------------------------------------------------------------------------------- /assets/arial.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/assets/arial.tga -------------------------------------------------------------------------------- /joints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/joints.cpp -------------------------------------------------------------------------------- /joints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ramakarl/invk/HEAD/joints.h --------------------------------------------------------------------------------