diff options
author | aap <aap@papnet.eu> | 2020-08-03 12:58:37 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-08-03 17:32:06 +0200 |
commit | abb640c6b6b1c4c1b699d18509c8a344e2be2dd5 (patch) | |
tree | 58cecb7517dfd70a4ce5e2f646ff23aa4fa4084d /src/math/Matrix.h | |
parent | Move sdk and eax (diff) | |
download | re3-abb640c6b6b1c4c1b699d18509c8a344e2be2dd5.tar re3-abb640c6b6b1c4c1b699d18509c8a344e2be2dd5.tar.gz re3-abb640c6b6b1c4c1b699d18509c8a344e2be2dd5.tar.bz2 re3-abb640c6b6b1c4c1b699d18509c8a344e2be2dd5.tar.lz re3-abb640c6b6b1c4c1b699d18509c8a344e2be2dd5.tar.xz re3-abb640c6b6b1c4c1b699d18509c8a344e2be2dd5.tar.zst re3-abb640c6b6b1c4c1b699d18509c8a344e2be2dd5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/math/Matrix.h | 1 |
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; } |