 |
Blamite Game Engine - Strings
00367.02.08.23.1815.blamite
A library containing general purpose utilities and classes for use in multiple projects.
|
Go to the documentation of this file.
6 #define STRINGS_API __declspec(dllexport)
8 #define STRINGS_API __declspec(dllimport)
11 constexpr
float BlamPi = 3.1415926535897932384626433832795f;
12 constexpr
float BlamPi2 = 6.2831853071795864769252867665590f;
13 constexpr
float BlamPiHalf = 1.5707963267948966192313216916398f;
STRINGS_API float FloatDegreesToRadians(float float_value)
Converts a float value from Degrees to Radians.
Definition: math.cpp:18
STRINGS_API float FloatRadiansToDegrees(float float_value)
Converts a float value from Radians to Degrees.
Definition: math.cpp:23
Namespace containing math-related utilities.
Definition: math.h:19
constexpr float BlamPi
Definition: math.h:11
constexpr float BlamPi2
Definition: math.h:12
#define STRINGS_API
Definition: math.h:8
constexpr float BlamPiQuarter
Definition: math.h:14
STRINGS_API uint64_t GenerateRandomUInt64()
Generates a random unsigned 64-bit integer.
Definition: math.cpp:28
constexpr float BlamPiHalf
Definition: math.h:13
STRINGS_API bool FloatIsInteger(float float_value)
Determines whether or not the specified float is a valid integer.
Definition: math.cpp:6