| 12345678910111213141516171819 |
- //
- // 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<int, 2, 2>;
- template class row_reference<int, 2>;
- template matrix<double, 4, 4> identity();
- template matrix<double, 4, 4> diagonal(vector::vector<double, 4> const &);
- template matrix<double, 4, 4> translation(vector::vector<double, 3> const &);
- template matrix<double, 4, 4> scalar(vector::vector<double, 3> const &);
- template vector::vector<double, 3> operator*(matrix<double, 4, 4> const &, vector::vector<double, 3> const &);
- } }
|