mirror of
https://github.com/Andreabont/simple-template-quaternion.git
synced 2024-11-21 14:37:56 +00:00
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