TDME2 1.9.121
Float.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#include <cmath>
7#include <limits>
8#include <string>
9#include <string_view>
10
11using std::isfinite;
12using std::isnan;
13using std::numeric_limits;
14using std::string;
15using std::string_view;
16
17/**
18 * Float class
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24public:
25 static constexpr float MAX_VALUE { numeric_limits<float>::max() };
26 static constexpr float MIN_VALUE { -numeric_limits<float>::max() };
27 static constexpr float NAN_VALUE { numeric_limits<float>::quiet_NaN() };
28
29 /**
30 * Check if given string is a float string
31 * @param str string
32 * @return given string is float
33 */
34 static bool is(const string& str);
35
36 /**
37 * Check if given string is a float string
38 * @param str string
39 * @return given string is float
40 */
41 static bool viewIs(const string_view& str);
42
43 /**
44 * Parse float
45 * @param str string
46 * @return float
47 */
48 static float parse(const string& str);
49
50 /**
51 * Parse float
52 * @param str string
53 * @return float
54 */
55 static float viewParse(const string_view& str);
56
57 /**
58 * Check if float is not a number
59 * @param value float value
60 * @return if value is not a number
61 */
62 inline static bool isNaN(float value) {
63 return isnan(value);
64 }
65
66 /**
67 * Check if float is finite
68 * @param value float value
69 * @return if value is finite
70 */
71 inline static bool isFinite(float value) {
72 return isfinite(value);
73 }
74
75 /**
76 * Interpolates between float 1 and float 2 by 0f<=t<=1f linearly
77 * @param f1 float 1
78 * @param f2 float 2
79 * @param t t
80 * @return interpolated float value
81 */
82 inline static float interpolateLinear(float f1, float f2, float t) {
83 return (f2 * t) + ((1.0f - t) * f1);
84 }
85
86
87};
Float class.
Definition: Float.h:23
static bool isFinite(float value)
Check if float is finite.
Definition: Float.h:71
static bool viewIs(const string_view &str)
Check if given string is a float string.
Definition: Float.cpp:33
static constexpr float MAX_VALUE
Definition: Float.h:25
static float viewParse(const string_view &str)
Parse float.
Definition: Float.cpp:52
static float parse(const string &str)
Parse float.
Definition: Float.cpp:41
static constexpr float NAN_VALUE
Definition: Float.h:27
static constexpr float MIN_VALUE
Definition: Float.h:26
static bool isNaN(float value)
Check if float is not a number.
Definition: Float.h:62
static bool is(const string &str)
Check if given string is a float string.
Definition: Float.cpp:25
static float interpolateLinear(float f1, float f2, float t)
Interpolates between float 1 and float 2 by 0f<=t<=1f linearly.
Definition: Float.h:82