From 8b47a5b9f49d94192d9a4f077fdd22712fa90df6 Mon Sep 17 00:00:00 2001 From: Nikolay Korolev Date: Sat, 22 Jun 2019 21:16:29 +0300 Subject: First commit of replay system --- src/math/Matrix.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/math/Matrix.h') 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& -- cgit v1.2.3