diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-03-28 17:02:44 +0300 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2020-03-28 17:02:44 +0300 |
commit | 3366cd0ff80c7770ef280858992b7c707f0890d2 (patch) | |
tree | 1075a403ebeafc73f7c4eddf671d72d761921f10 /src/math/Vector.h | |
parent | 9e49e5c2bd4526355410d647e353067fcfdcaf2d (diff) |
WaterCannon done, resource ico
Diffstat (limited to 'src/math/Vector.h')
-rw-r--r-- | src/math/Vector.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/Vector.h b/src/math/Vector.h index cd436123..6f544ada 100644 --- a/src/math/Vector.h +++ b/src/math/Vector.h @@ -38,6 +38,14 @@ public: }else x = 1.0f; } + + void Normalise(float norm) { + float sq = MagnitudeSqr(); + float invsqrt = RecipSqrt(norm, sq); + x *= invsqrt; + y *= invsqrt; + z *= invsqrt; + } const CVector &operator+=(CVector const &right) { x += right.x; |