diff options
-rw-r--r-- | opentrack/simple-mat.hpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/opentrack/simple-mat.hpp b/opentrack/simple-mat.hpp index 5fa3acf9..8e39a14f 100644 --- a/opentrack/simple-mat.hpp +++ b/opentrack/simple-mat.hpp @@ -63,12 +63,10 @@ struct Mat for (int j = 0; j < h; j++) for (int i = 0; i < w; i++) ret.data[i][j] = data[j][i]; - + return ret; } }; template<int h, int w> using dmat = Mat<double, h, w>; -using rmat = dmat<3, 3>; - |