Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/functions.cc')
-rw-r--r--src/math/functions.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/math/functions.cc b/src/math/functions.cc
index 7c95a79..ffbf453 100644
--- a/src/math/functions.cc
+++ b/src/math/functions.cc
@@ -5,23 +5,12 @@
*/
#include "math/functions.h"
-#include <stdlib.h>
namespace math
{
const float DELTA = 10e-10;
-float randomf(const float max)
-{
- return ((float) rand() / (float) RAND_MAX) * max;
-}
-
-unsigned randomi(const unsigned int max)
-{
- return ((unsigned int)(rand() % max));
-}
-
float degrees180f(float angle)
{
float r = angle;