mirror of
https://github.com/love2d/love.git
synced 2026-08-16 16:20:42 +02:00
Add random([[min], max]) and random_normal([o]).
Little helpers for drawing numbers from bounded uniform and Gaussian distributions.
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
#define LOVE_MATH_H
|
||||
|
||||
#include <climits> // for CHAR_BIT
|
||||
#include <cstdlib> // for rand() and RAND_MAX
|
||||
|
||||
/* Definitions of useful mathematical constants
|
||||
* M_E - e
|
||||
@@ -80,6 +81,41 @@ inline float next_p2(float x)
|
||||
return static_cast<float>(next_p2(static_cast<int>(x)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Draws a random number from a uniform distribution.
|
||||
* @returns Uniformly distributed random number in [0:1).
|
||||
*/
|
||||
inline float random()
|
||||
{
|
||||
return float(rand()) / (float(RAND_MAX) + 1.0f);
|
||||
}
|
||||
|
||||
/**
|
||||
* Draws a random number from a uniform distribution.
|
||||
* @return Uniformly distributed random number in [0:max).
|
||||
*/
|
||||
inline float random(float max)
|
||||
{
|
||||
return random() * max;
|
||||
}
|
||||
|
||||
/**
|
||||
* Draws a random number from a uniform distribution.
|
||||
* @return Uniformly distributed random number in [min:max).
|
||||
*/
|
||||
inline float random(float min, float max)
|
||||
{
|
||||
return random(max - min) + min;
|
||||
}
|
||||
|
||||
/**
|
||||
* Draws a random number from a normal/gaussian distribution.
|
||||
* @param o Standard deviation of the distribution.
|
||||
* @returns Normal distributed random number with mean 0 and variance o^2.
|
||||
*/
|
||||
float random_normal(float o = 1.);
|
||||
#define random_gaussion random_normal
|
||||
|
||||
} // love
|
||||
|
||||
#endif // LOVE_MATH_H
|
||||
|
||||
Reference in New Issue
Block a user