diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-01 01:32:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-01 01:32:07 +0100 |
commit | de9446186dd00027921affc4183f19ab1c224322 (patch) | |
tree | 89916d57c088a6a34527713cf69934c4ff2d83af /core/math/random_pcg.h | |
parent | 9458a8f74254f1fe7f227ab92fbc3b8c9cbaa64a (diff) | |
parent | 1485924a2b90d15949fe544097ce8d00d527e9e7 (diff) | |
download | redot-engine-de9446186dd00027921affc4183f19ab1c224322.tar.gz |
Merge pull request #58488 from lawnjelly/float_literals_casts
Diffstat (limited to 'core/math/random_pcg.h')
-rw-r--r-- | core/math/random_pcg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/random_pcg.h b/core/math/random_pcg.h index 974dbbfc2e..65fcf67664 100644 --- a/core/math/random_pcg.h +++ b/core/math/random_pcg.h @@ -129,7 +129,7 @@ public: return p_mean + p_deviation * (cos(Math_TAU * randd()) * sqrt(-2.0 * log(randd()))); // Box-Muller transform } _FORCE_INLINE_ float randfn(float p_mean, float p_deviation) { - return p_mean + p_deviation * (cos(Math_TAU * randf()) * sqrt(-2.0 * log(randf()))); // Box-Muller transform + return p_mean + p_deviation * (cos((float)Math_TAU * randf()) * sqrt(-2.0 * log(randf()))); // Box-Muller transform } double random(double p_from, double p_to); |