Float class.
More...
#include <tdme/utilities/Float.h>
|
static bool | is (const string &str) |
| Check if given string is a float string. More...
|
|
static bool | viewIs (const string_view &str) |
| Check if given string is a float string. More...
|
|
static float | parse (const string &str) |
| Parse float. More...
|
|
static float | viewParse (const string_view &str) |
| Parse float. More...
|
|
static bool | isNaN (float value) |
| Check if float is not a number. More...
|
|
static bool | isFinite (float value) |
| Check if float is finite. More...
|
|
static float | interpolateLinear (float f1, float f2, float t) |
| Interpolates between float 1 and float 2 by 0f<=t<=1f linearly. More...
|
|
|
static constexpr float | MAX_VALUE { numeric_limits<float>::max() } |
|
static constexpr float | MIN_VALUE { -numeric_limits<float>::max() } |
|
static constexpr float | NAN_VALUE { numeric_limits<float>::quiet_NaN() } |
|
Float class.
- Author
- Andreas Drewke
- Version
- $Id$
Definition at line 22 of file Float.h.
◆ interpolateLinear()
static float interpolateLinear |
( |
float |
f1, |
|
|
float |
f2, |
|
|
float |
t |
|
) |
| |
|
inlinestatic |
Interpolates between float 1 and float 2 by 0f<=t<=1f linearly.
- Parameters
-
- Returns
- interpolated float value
Definition at line 82 of file Float.h.
◆ is()
bool is |
( |
const string & |
str | ) |
|
|
static |
Check if given string is a float string.
- Parameters
-
- Returns
- given string is float
Definition at line 25 of file Float.cpp.
◆ isFinite()
static bool isFinite |
( |
float |
value | ) |
|
|
inlinestatic |
Check if float is finite.
- Parameters
-
- Returns
- if value is finite
Definition at line 71 of file Float.h.
◆ isNaN()
static bool isNaN |
( |
float |
value | ) |
|
|
inlinestatic |
Check if float is not a number.
- Parameters
-
- Returns
- if value is not a number
Definition at line 62 of file Float.h.
◆ parse()
float parse |
( |
const string & |
str | ) |
|
|
static |
Parse float.
- Parameters
-
- Returns
- float
Definition at line 41 of file Float.cpp.
◆ viewIs()
bool viewIs |
( |
const string_view & |
str | ) |
|
|
static |
Check if given string is a float string.
- Parameters
-
- Returns
- given string is float
Definition at line 33 of file Float.cpp.
◆ viewParse()
float viewParse |
( |
const string_view & |
str | ) |
|
|
static |
Parse float.
- Parameters
-
- Returns
- float
Definition at line 52 of file Float.cpp.
◆ MAX_VALUE
constexpr float MAX_VALUE { numeric_limits<float>::max() } |
|
staticconstexpr |
◆ MIN_VALUE
constexpr float MIN_VALUE { -numeric_limits<float>::max() } |
|
staticconstexpr |
◆ NAN_VALUE
constexpr float NAN_VALUE { numeric_limits<float>::quiet_NaN() } |
|
staticconstexpr |
The documentation for this class was generated from the following files:
- /home/andreas/Development/drewke.net/tdme2/src/tdme/utilities/Float.h
- /home/andreas/Development/drewke.net/tdme2/src/tdme/utilities/Float.cpp