summaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-06-01 10:44:33 +0200
committerGitHub <noreply@github.com>2020-06-01 10:44:33 +0200
commit6d3e54369ce9ac826ab7c74da4be1c15d3ff3df0 (patch)
tree5f09d5f4358b1518262068d65ac713993b2cf437 /src/math
parentMerge branch 'miami' of https://github.com/GTAmodding/re3 into miami (diff)
parentfix (diff)
downloadre3-6d3e54369ce9ac826ab7c74da4be1c15d3ff3df0.tar
re3-6d3e54369ce9ac826ab7c74da4be1c15d3ff3df0.tar.gz
re3-6d3e54369ce9ac826ab7c74da4be1c15d3ff3df0.tar.bz2
re3-6d3e54369ce9ac826ab7c74da4be1c15d3ff3df0.tar.lz
re3-6d3e54369ce9ac826ab7c74da4be1c15d3ff3df0.tar.xz
re3-6d3e54369ce9ac826ab7c74da4be1c15d3ff3df0.tar.zst
re3-6d3e54369ce9ac826ab7c74da4be1c15d3ff3df0.zip
Diffstat (limited to 'src/math')
-rw-r--r--src/math/Matrix.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/Matrix.h b/src/math/Matrix.h
index 1d26cc20..9979e701 100644
--- a/src/math/Matrix.h
+++ b/src/math/Matrix.h
@@ -255,6 +255,14 @@ public:
m_matrix.at.y = 0.0f;
m_matrix.at.z = 1.0f;
}
+ void SetTranslateOnly(float x, float y, float z) {
+ m_matrix.pos.x = x;
+ m_matrix.pos.y = y;
+ m_matrix.pos.z = z;
+ }
+ void SetTranslateOnly(const CVector& pos) {
+ SetTranslateOnly(pos.x, pos.y, pos.z);
+ }
};