diff options
author | Nao Pross <naopross@thearcway.org> | 2019-06-24 10:16:32 +0200 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2019-06-24 10:17:45 +0200 |
commit | 4234e4adf62d035cd4c7bb5e9412fabc013dba6e (patch) | |
tree | 42aa3eb306719436bb5c39c0ec55fedd35fbdaa6 /include/mm/mm.hpp | |
parent | Update matrix test, add square matrix trace and fix comments (diff) | |
parent | Update CMakeLists and structure under include (diff) | |
download | libmm-4234e4adf62d035cd4c7bb5e9412fabc013dba6e.tar.gz libmm-4234e4adf62d035cd4c7bb5e9412fabc013dba6e.zip |
Merge branch 'master' into matrices
Diffstat (limited to 'include/mm/mm.hpp')
-rw-r--r-- | include/mm/mm.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/mm/mm.hpp b/include/mm/mm.hpp new file mode 100644 index 0000000..7e9f02b --- /dev/null +++ b/include/mm/mm.hpp @@ -0,0 +1,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" |