diff options
author | aap <aap@papnet.eu> | 2020-12-18 13:50:37 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-12-18 13:50:37 +0100 |
commit | 55cf1a37cbce81db5b32264cfb4ebfa0a9793017 (patch) | |
tree | 9273d77a5fdffc4bc70cf7439fedb7935da024d6 /src/math/Matrix.h | |
parent | little cleanup and synch on templates and config (diff) | |
parent | Merge pull request #889 from aap/miami (diff) | |
download | re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.gz re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.bz2 re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.lz re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.xz re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.tar.zst re3-55cf1a37cbce81db5b32264cfb4ebfa0a9793017.zip |
Diffstat (limited to '')
-rw-r--r-- | src/math/Matrix.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/math/Matrix.h b/src/math/Matrix.h index bf811af7..d32b1d93 100644 --- a/src/math/Matrix.h +++ b/src/math/Matrix.h @@ -23,15 +23,6 @@ public: void UpdateRW(void); void operator=(CMatrix const &rhs); CMatrix &operator+=(CMatrix const &rhs); -#ifdef RWCORE_H - operator RwMatrix (void) const { - return m_matrix; - } - - operator RwMatrix *(void) { - return &m_matrix; - } -#endif CMatrix &operator*=(CMatrix const &rhs); const CVector &GetPosition(void) const { return *(CVector*)&m_matrix.pos; } |