A simple header-only generic C++ quaternion class.
| .github/workflows | ||
| CMakeLists.txt | ||
| example.cpp | ||
| Quaternion.h | ||
| README.md | ||
| test.cpp | ||
A simple header-only generic C++ quaternion class.
- Header-only.
- No dynamic memory allocation.
- Supports operations on mixed types.
- Modern C++.
- Compatible with Standard Template Library.
Run test suite
mkdir build
cd build
cmake ..
make
make test