From 69f7ffa70863bef2be4cae08c466b5d97a627277 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Wed, 30 Jan 2008 17:34:35 +0000 Subject: accomodate the new modules --- src/common/functions.cc | 64 ------------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 src/common/functions.cc (limited to 'src/common/functions.cc') diff --git a/src/common/functions.cc b/src/common/functions.cc deleted file mode 100644 index 343084a..0000000 --- a/src/common/functions.cc +++ /dev/null @@ -1,64 +0,0 @@ -/* - common/functions.cc - This file is part of the Osirion project and is distributed under - the terms of the GNU General Public License version 2 -*/ - -// project headers -#include "functions.h" - -namespace common { - -float min(float a, float b) { - return (a < b ? a : b); -} - -float max(float a, float b) { - return (a > b ? a : b); -} - -int min(int a, int b) { - return (a < b ? a : b); -} - -int max(int a, int b) { - return (a > b ? a : b); -} - -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; - while (r <= -180.0f) - r += 360.0f; - while (r >= 180.0f) - r -= 360.0f; - return r; -} - -float degrees360f(float angle) { - float r = angle; - while (r < 0.0f) - r += 360.0f; - while (r >= 360.0f) - r -= 360.0f; - return r; -} - -float sgnf(float value) -{ - if (value < 0 ) - return -1; - else if (value == 0 ) - return 0; - - return 1; -} - -} // namespace common -- cgit v1.2.3