40 return c + ((d - c) / (b - a)) * (value - a);
50std::vector<std::string>
51split(
const std::string &str,
char delim)
53 std::vector<std::string> result;
54 std::stringstream ss(str);
57 while (getline(ss, item, delim)) {
58 result.emplace_back(item);
float shift_interval(float value, float a, float b, float c, float d)
Shifts value from [a,b] to [c, d].
std::vector< std::string > split(const std::string &str, char delim)
Splits a given string into words by a given delimiter.