simple-template-quaternion/README.md

19 lines
314 B
Markdown
Raw Permalink Normal View History

2019-04-04 13:26:31 +00: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
```