// // matrix_dummy.cpp // matrix // // Created by Sam Jaffe on 6/3/18. // #include "matrix.hpp" #include "matrix_helpers.hpp" namespace math { namespace matrix { template class matrix; template class row_reference; template matrix identity(); template matrix diagonal(vector::vector const &); template matrix translation(vector::vector const &); template matrix scalar(vector::vector const &); template vector::vector operator*(matrix const &, vector::vector const &); template matrix rotation(double, rotation_t<3>); template matrix rotation(double, rotation_t<3>); } }