#include <sstream>
#include <string>
#include <vector>
Go to the source code of this file.
|
float | shift_interval (float value, float a, float b, float c, float d) |
| Shifts value from [a,b] to [c, d]. More...
|
|
std::vector< std::string > | split (const std::string &str, char delim) |
| Splits a given string into words by a given delimiter. More...
|
|
◆ shift_interval()
float shift_interval |
( |
float |
value, |
|
|
float |
a, |
|
|
float |
b, |
|
|
float |
c, |
|
|
float |
d |
|
) |
| |
Shifts value from [a,b] to [c, d].
- Parameters
-
value | Old value. |
a | Old interval - from. |
b | Old interval - to. |
c | New interval - from. |
d | New interval - to. |
- Returns
- float New value.
Definition at line 38 of file utils.hpp.
◆ split()
std::vector< std::string > split |
( |
const std::string & |
str, |
|
|
char |
delim |
|
) |
| |
Splits a given string into words by a given delimiter.
- Parameters
-
str | Input string for splitting. |
delim | Delimiter used for splitting. |
- Returns
- std::vector<std::string> Array of resulting words.
Definition at line 51 of file utils.hpp.