simple-template-quaternion/README.md
2019-04-04 15:26:31 +02:00

19 lines
314 B
Markdown

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
```