summaryrefslogtreecommitdiffstats
path: root/src/math/math.cpp
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2020-04-17 15:15:42 +0200
committeraap <aap@papnet.eu>2020-04-17 15:15:42 +0200
commit6ef7924e0122155c390698bdd66e9757f4da5fa0 (patch)
tree80df77d24bd7a6fbcd29b4026fe7291b519bd4a3 /src/math/math.cpp
parentlibrw submodule (diff)
downloadre3-6ef7924e0122155c390698bdd66e9757f4da5fa0.tar
re3-6ef7924e0122155c390698bdd66e9757f4da5fa0.tar.gz
re3-6ef7924e0122155c390698bdd66e9757f4da5fa0.tar.bz2
re3-6ef7924e0122155c390698bdd66e9757f4da5fa0.tar.lz
re3-6ef7924e0122155c390698bdd66e9757f4da5fa0.tar.xz
re3-6ef7924e0122155c390698bdd66e9757f4da5fa0.tar.zst
re3-6ef7924e0122155c390698bdd66e9757f4da5fa0.zip
Diffstat (limited to '')
-rw-r--r--src/math/math.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/math.cpp b/src/math/math.cpp
index 4f74fac9..04fab797 100644
--- a/src/math/math.cpp
+++ b/src/math/math.cpp
@@ -5,6 +5,19 @@
// TODO: move more stuff into here
void
+CVector2D::Normalise(void)
+{
+ float sq = MagnitudeSqr();
+ assert(sq != 0.0f); // just be safe here
+ //if(sq > 0.0f){
+ float invsqrt = RecipSqrt(sq);
+ x *= invsqrt;
+ y *= invsqrt;
+ //}else
+ // x = 1.0f;
+}
+
+void
CMatrix::SetRotate(float xAngle, float yAngle, float zAngle)
{
float cX = Cos(xAngle);