blob: 7e9f02b4981c2395389927a6fdb6ad2d1723e44f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
/* MiniMath
* A mathematical vector library that (ab)uses modern C++ abstraction features.
* This header includes the entire library.
*
* Warning: having (ab)used a lot of templated code it is not recommended to
* include everything as it may slow down the compiler.
*/
#include "mm/mmvec.hpp"
|