From 600bf0351476a5a21aabb5429132ddf7f52ac0b9 Mon Sep 17 00:00:00 2001 From: aap Date: Wed, 15 May 2019 16:52:37 +0200 Subject: first commit --- src/General.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/General.h (limited to 'src/General.h') diff --git a/src/General.h b/src/General.h new file mode 100644 index 00000000..7aacee39 --- /dev/null +++ b/src/General.h @@ -0,0 +1,15 @@ +class CGeneral +{ +public: + static float GetATanOfXY(float x, float y){ + if(y >= 0.0f) return atan2(x, y); + return atan2(x, y) + 2*M_PI; + } + + // not too sure about all these... + static uint16 GetRandomNumber(void) + { return myrand() & 0xFFFF; } + // Probably don't want to ever reach high + static float GetRandomNumberInRange(float low, float high) + { return low + (high - low)*(GetRandomNumber()/65536.0f); } +}; -- cgit v1.2.3