diff options
author | erorcun <erayorcunus@gmail.com> | 2020-07-22 17:21:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-22 17:21:39 +0200 |
commit | b182fa4bb89a770d2e34da162eb46cdbaceb153b (patch) | |
tree | b641e2e0a9dc0edddae8e09d04660c13936798c2 /src/math/maths.h | |
parent | README 64-bit preparation (diff) | |
parent | Peds, Hud, CFO 1/2, fixes - including zone names (diff) | |
download | re3-b182fa4bb89a770d2e34da162eb46cdbaceb153b.tar re3-b182fa4bb89a770d2e34da162eb46cdbaceb153b.tar.gz re3-b182fa4bb89a770d2e34da162eb46cdbaceb153b.tar.bz2 re3-b182fa4bb89a770d2e34da162eb46cdbaceb153b.tar.lz re3-b182fa4bb89a770d2e34da162eb46cdbaceb153b.tar.xz re3-b182fa4bb89a770d2e34da162eb46cdbaceb153b.tar.zst re3-b182fa4bb89a770d2e34da162eb46cdbaceb153b.zip |
Diffstat (limited to 'src/math/maths.h')
-rw-r--r-- | src/math/maths.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/math/maths.h b/src/math/maths.h index 51b0ef10..8d68bf64 100644 --- a/src/math/maths.h +++ b/src/math/maths.h @@ -15,3 +15,5 @@ inline float Sqrt(float x) { return sqrtf(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); } +inline float Floor(float x) { return floorf(x); } +inline float Ceil(float x) { return ceilf(x); } |