diff options
author | Pierrick Brunet <brunetpierrick@gmail.com> | 2019-02-16 21:05:18 +0100 |
---|---|---|
committer | Pierrick Brunet <brunetpierrick@gmail.com> | 2019-02-16 21:05:18 +0100 |
commit | 3b6d05db3e100c53bf494a70550d548fd29d955b (patch) | |
tree | d0ee8f0b27abfe414c60717643b541fadca62b89 /core | |
parent | 274d7cd632e1a1886372935721ccf2642b34b9a3 (diff) |
Fix typo for randd and randf
* And improve documentation according to issue #25938
Diffstat (limited to 'core')
-rw-r--r-- | core/math/math_funcs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/math_funcs.h b/core/math/math_funcs.h index ea0bfd88cc..629002ced6 100644 --- a/core/math/math_funcs.h +++ b/core/math/math_funcs.h @@ -242,8 +242,8 @@ public: static void randomize(); static uint32_t rand_from_seed(uint64_t *seed); static uint32_t rand(); - static _ALWAYS_INLINE_ double randf() { return (double)rand() / (double)Math::RANDOM_MAX; } - static _ALWAYS_INLINE_ float randd() { return (float)rand() / (float)Math::RANDOM_MAX; } + static _ALWAYS_INLINE_ double randd() { return (double)rand() / (double)Math::RANDOM_MAX; } + static _ALWAYS_INLINE_ float randf() { return (float)rand() / (float)Math::RANDOM_MAX; } static double random(double from, double to); static float random(float from, float to); |