summaryrefslogtreecommitdiffstats
path: root/src/math/Matrix.h
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-08-08 12:08:21 +0200
committerNikolay Korolev <nickvnuk@gmail.com>2020-08-08 12:08:21 +0200
commit9bc105c92346494bc4c36bcebd0a4a86bf9d6a86 (patch)
treeb0582e41c8bc4d5fa0979d8a453b0a2d128f012c /src/math/Matrix.h
parentsubmodules? (diff)
parentMerge pull request #680 from ShFil119/actions (diff)
downloadre3-9bc105c92346494bc4c36bcebd0a4a86bf9d6a86.tar
re3-9bc105c92346494bc4c36bcebd0a4a86bf9d6a86.tar.gz
re3-9bc105c92346494bc4c36bcebd0a4a86bf9d6a86.tar.bz2
re3-9bc105c92346494bc4c36bcebd0a4a86bf9d6a86.tar.lz
re3-9bc105c92346494bc4c36bcebd0a4a86bf9d6a86.tar.xz
re3-9bc105c92346494bc4c36bcebd0a4a86bf9d6a86.tar.zst
re3-9bc105c92346494bc4c36bcebd0a4a86bf9d6a86.zip
Diffstat (limited to 'src/math/Matrix.h')
-rw-r--r--src/math/Matrix.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/math/Matrix.h b/src/math/Matrix.h
index c849a5c4..e2d6b0e0 100644
--- a/src/math/Matrix.h
+++ b/src/math/Matrix.h
@@ -81,6 +81,7 @@ public:
m_matrix.pos.z += rhs.m_matrix.pos.z;
return *this;
}
+ CMatrix& operator*=(CMatrix const &rhs);
CVector &GetPosition(void){ return *(CVector*)&m_matrix.pos; }
CVector &GetRight(void) { return *(CVector*)&m_matrix.right; }