A simple header-only generic C++ quaternion class.
Go to file
2020-07-09 15:25:41 +02:00
.github/workflows Update c-cpp.yml 2020-07-09 15:25:41 +02:00
CMakeLists.txt Update CMakeLists.txt 2020-07-09 15:02:13 +02:00
example.cpp First commit 2019-04-04 15:26:31 +02:00
Quaternion.h First commit 2019-04-04 15:26:31 +02:00
README.md First commit 2019-04-04 15:26:31 +02:00
test.cpp First commit 2019-04-04 15:26:31 +02:00

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