summaryrefslogtreecommitdiffstats
path: root/vector/vector.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-01-25Delete vectorNao Pross1-175/+0
2019-01-20Update vector.cpp to use STL std::transform and std::inner_productNao Pross1-13/+11
2018-12-10Implement vec2<T>::polar() former vec2<T>::angle()Nao Pross1-3/+9
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