diff options
author | Nikolay Korolev <nickvnuk@gmail.com> | 2020-04-06 18:31:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-06 18:31:54 +0200 |
commit | 81d945488d85e6ac82853fe3f2d1f9ef7963c3b7 (patch) | |
tree | 577560902cfab188f260d3622cbba616b52a7128 /src/math/Matrix.h | |
parent | Merge pull request #354 from PerikiyoXD/master (diff) | |
parent | stats fix (diff) | |
download | re3-81d945488d85e6ac82853fe3f2d1f9ef7963c3b7.tar re3-81d945488d85e6ac82853fe3f2d1f9ef7963c3b7.tar.gz re3-81d945488d85e6ac82853fe3f2d1f9ef7963c3b7.tar.bz2 re3-81d945488d85e6ac82853fe3f2d1f9ef7963c3b7.tar.lz re3-81d945488d85e6ac82853fe3f2d1f9ef7963c3b7.tar.xz re3-81d945488d85e6ac82853fe3f2d1f9ef7963c3b7.tar.zst re3-81d945488d85e6ac82853fe3f2d1f9ef7963c3b7.zip |
Diffstat (limited to 'src/math/Matrix.h')
-rw-r--r-- | src/math/Matrix.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/math/Matrix.h b/src/math/Matrix.h index da38cb1d..35972e7f 100644 --- a/src/math/Matrix.h +++ b/src/math/Matrix.h @@ -243,6 +243,17 @@ public: m_matrix.pos.y = 0.0f; m_matrix.pos.z = 0.0f; } + void ResetOrientation(void) { + m_matrix.right.x = 1.0f; + m_matrix.right.y = 0.0f; + m_matrix.right.z = 0.0f; + m_matrix.up.x = 0.0f; + m_matrix.up.y = 1.0f; + m_matrix.up.z = 0.0f; + m_matrix.at.x = 0.0f; + m_matrix.at.y = 0.0f; + m_matrix.at.z = 1.0f; + } }; |