diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2019-06-22 21:16:29 +0300 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2019-06-22 21:17:25 +0300 |
commit | 8b47a5b9f49d94192d9a4f077fdd22712fa90df6 (patch) | |
tree | 27a6dffe3624b3aa89a2aefd286d4a8dfa92d7f2 /src/math/Matrix.h | |
parent | 75ede35342ca51083fc6ae725c6722b7ed2041c0 (diff) |
First commit of replay system
Diffstat (limited to 'src/math/Matrix.h')
-rw-r--r-- | src/math/Matrix.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/math/Matrix.h b/src/math/Matrix.h index 10255af1..faee4660 100644 --- a/src/math/Matrix.h +++ b/src/math/Matrix.h @@ -155,6 +155,9 @@ public: r.Normalise(); f = CrossProduct(u, r); } + void CopyOnlyMatrix(CMatrix *other){ + m_matrix = other->m_matrix; + } }; inline CMatrix& |