|
bool | SBS::IsEven (int Number) |
|
bool | SBS::IsNumeric (char character) |
|
bool | SBS::IsNumeric (const std::string &string) |
|
bool | SBS::IsNumeric (const std::string &string, int &number) |
|
bool | SBS::IsNumeric (const std::string &string, float &number) |
|
bool | SBS::IsNumeric (const std::string &string, double &number) |
|
std::string | SBS::BoolToString (bool item) |
|
Real | SBS::RadiansToDegrees (Real radians) |
|
Real | SBS::DegreesToRadians (Real degrees) |
|
Real | SBS::Min (Real a, Real b, Real c) |
|
Real | SBS::Max (Real a, Real b, Real c) |
|
Real | SBS::Min (Real a, Real b, Real c, Real d) |
|
Real | SBS::Max (Real a, Real b, Real c, Real d) |
|
std::string | SBS::SetCaseCopy (std::string string, bool uppercase) |
|
void | SBS::SetCase (std::string &string, bool uppercase) |
|
int | SBS::FindWithCase (const std::string &string, bool uppercase, const std::string &key, int offset) |
|
void | SBS::TrimString (std::string &string) |
|
std::string | SBS::TrimStringCopy (std::string string) |
|
void | SBS::ReplaceAll (std::string &string, const std::string &original, const std::string &replacement) |
|
bool | SBS::StartsWith (const std::string &string, const std::string &check_string, bool ignore_case) |
|
bool | SBS::StartsWithNoCase (const std::string &string, const std::string &check_string) |
|
void | SBS::SplitString (std::vector< std::string > &dest_array, const std::string &original_string, char separator) |
|
std::string | SBS::ToString (int number) |
|
std::string | SBS::ToString (float number) |
|
std::string | SBS::ToString (double number) |
|
std::string | SBS::ToString (unsigned long number) |
|
float | SBS::Log2 (float number) |
|
double | SBS::Log2 (double number) |
|
float | SBS::Round (float number, int decimal_places) |
|
double | SBS::Round (double number, int decimal_places) |
|
Vector3 | SBS::Round (const Vector3 &value, int decimal_places) |
|
Vector2 | SBS::Round (const Vector2 &value, int decimal_places) |
|
bool | SBS::IsBoolean (std::string string) |
|
Real | SBS::ToFloat (const std::string &string) |
|
int | SBS::ToInt (const std::string &string) |
|
bool | SBS::ToBool (std::string string) |
|
std::string | SBS::TruncateNumber (float value, int decimals) |
|
std::string | SBS::TruncateNumber (double value, int decimals) |
|
std::string | SBS::TruncateNumber (const std::string &value, int decimals) |
|