summaryrefslogtreecommitdiffstats
path: root/vector/vector.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-12-10Update makefile ad update basic_vec to allow abstract algebraic structuresNao Pross1-4/+9
Unfortunately this requires C++17 as `static constexpr` members have an undefined behaviour before this version.
2018-12-10Implement cross product for vec2 and vec3Nao Pross1-11/+15
2018-12-10Fix vector copy constructorsNao Pross1-1/+12
2018-12-10Simplified vector by inheriting std::array instead of having m_dataNao Pross1-52/+8
2018-12-10Add C++ templated vector exampleNao Pross1-0/+195