mirror of
https://github.com/Andreabont/simple-template-quaternion.git
synced 2024-11-10 01:41:43 +00:00
19 lines
314 B
Markdown
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
|
|
|
|
```
|