summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-09-14 23:31:32 +0200
committerSergeanur <s.anureev@yandex.ua>2020-09-14 23:31:57 +0200
commit9c2e9fcf886533ea2a1fdd415b31c659ca733286 (patch)
tree6fda1fe2d7cd6d5dc808ce15d230254498bcab1d
parentMove a bunch of math to cpp files + small fixes (diff)
downloadre3-9c2e9fcf886533ea2a1fdd415b31c659ca733286.tar
re3-9c2e9fcf886533ea2a1fdd415b31c659ca733286.tar.gz
re3-9c2e9fcf886533ea2a1fdd415b31c659ca733286.tar.bz2
re3-9c2e9fcf886533ea2a1fdd415b31c659ca733286.tar.lz
re3-9c2e9fcf886533ea2a1fdd415b31c659ca733286.tar.xz
re3-9c2e9fcf886533ea2a1fdd415b31c659ca733286.tar.zst
re3-9c2e9fcf886533ea2a1fdd415b31c659ca733286.zip
-rw-r--r--src/math/Matrix.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/math/Matrix.cpp b/src/math/Matrix.cpp
index 3e77548d..a8b1b182 100644
--- a/src/math/Matrix.cpp
+++ b/src/math/Matrix.cpp
@@ -327,14 +327,14 @@ CMatrix::RotateY(float y)
float px = m_matrix.pos.x;
float pz = m_matrix.pos.z;
- m_matrix.right.x = c * rx - s * rz;
- m_matrix.right.z = c * rz + s * rx;
- m_matrix.up.x = c * ux - s * uz;
- m_matrix.up.z = c * uz + s * ux;
- m_matrix.at.x = c * ax - s * az;
- m_matrix.at.z = c * az + s * ax;
- m_matrix.pos.x = c * px - s * pz;
- m_matrix.pos.z = c * pz + s * px;
+ m_matrix.right.x = c * rx + s * rz;
+ m_matrix.right.z = c * rz - s * rx;
+ m_matrix.up.x = c * ux + s * uz;
+ m_matrix.up.z = c * uz - s * ux;
+ m_matrix.at.x = c * ax + s * az;
+ m_matrix.at.z = c * az - s * ax;
+ m_matrix.pos.x = c * px + s * pz;
+ m_matrix.pos.z = c * pz - s * px;
}
void