summaryrefslogtreecommitdiff
path: root/src/math/Matrix.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-12-18 02:58:09 +0200
committerSergeanur <s.anureev@yandex.ua>2020-12-18 02:58:09 +0200
commitcfda5eb148abdb502b049083c83f166460ccc8be (patch)
tree290b84a8053f37f3b676fd26314631a528f04630 /src/math/Matrix.h
parent2903ebe2965b90a97195249f2592ccf820ca66b7 (diff)
PlayerInfo functions reordered into original order, FindPlayer... functions moved to PlayerInfo, improved CVector <-> RwV3d conversion, small fixes
Diffstat (limited to 'src/math/Matrix.h')
-rw-r--r--src/math/Matrix.h9
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; }