diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2019-06-22 20:43:56 +0200 |
---|---|---|
committer | Nikolay Korolev <nickvnuk@gmail.com> | 2019-06-22 20:43:56 +0200 |
commit | 3b4cf4f418dd94a00f09e218322ed390bea63250 (patch) | |
tree | 279839b5dc33bd0ee004e31db4e5df05489e6917 /src | |
parent | fixed types (diff) | |
download | re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.gz re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.bz2 re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.lz re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.xz re3-3b4cf4f418dd94a00f09e218322ed390bea63250.tar.zst re3-3b4cf4f418dd94a00f09e218322ed390bea63250.zip |
Diffstat (limited to '')
-rw-r--r-- | src/math/Matrix.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/Matrix.h b/src/math/Matrix.h index faee4660..a93de636 100644 --- a/src/math/Matrix.h +++ b/src/math/Matrix.h @@ -155,9 +155,9 @@ public: r.Normalise(); f = CrossProduct(u, r); } - void CopyOnlyMatrix(CMatrix *other){ - m_matrix = other->m_matrix; - } + void CopyOnlyMatrix(CMatrix *other){ + m_matrix = other->m_matrix; + } }; inline CMatrix& |