diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-07-24 18:55:43 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-07-24 18:55:43 +0200 |
commit | b4ecb3e3dad654e01d0ceb4c359721650dda425b (patch) | |
tree | 27cfc6fb58ec53080d9c4850f13b8b97ad681b13 /src/math/maths.h | |
parent | Merge pull request #1 from GTAmodding/master (diff) | |
download | re3-b4ecb3e3dad654e01d0ceb4c359721650dda425b.tar re3-b4ecb3e3dad654e01d0ceb4c359721650dda425b.tar.gz re3-b4ecb3e3dad654e01d0ceb4c359721650dda425b.tar.bz2 re3-b4ecb3e3dad654e01d0ceb4c359721650dda425b.tar.lz re3-b4ecb3e3dad654e01d0ceb4c359721650dda425b.tar.xz re3-b4ecb3e3dad654e01d0ceb4c359721650dda425b.tar.zst re3-b4ecb3e3dad654e01d0ceb4c359721650dda425b.zip |
Diffstat (limited to 'src/math/maths.h')
-rw-r--r-- | src/math/maths.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/math/maths.h b/src/math/maths.h index a1c3f109..51b0ef10 100644 --- a/src/math/maths.h +++ b/src/math/maths.h @@ -12,5 +12,6 @@ inline float Atan(float x) { return atanf(x); } inline float Atan2(float y, float x) { return atan2f(y, x); } inline float Abs(float x) { return fabs(x); } inline float Sqrt(float x) { return sqrtf(x); } -inline float RecipSqrt(float x) { return 1.0f/Sqrt(x); } +inline float RecipSqrt(float x, float y) { return x/Sqrt(y); } +inline float RecipSqrt(float x) { return RecipSqrt(1.0f, x); } inline float Pow(float x, float y) { return powf(x, y); } |