diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-22 08:47:14 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-09-22 08:47:14 -0400 |
commit | 19b2b1dde25885ada99deefe79266c2e22376e85 (patch) | |
tree | a5bf9c56f468663b78ce109d89b853637236574c /include/vector2.hpp | |
parent | 8720f1f253b55fa5233626dd854671a5925d65de (diff) |
new font; dialog box word wrap... finally
Diffstat (limited to 'include/vector2.hpp')
-rw-r--r-- | include/vector2.hpp | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/include/vector2.hpp b/include/vector2.hpp index 5c9f9e1..54b0809 100644 --- a/include/vector2.hpp +++ b/include/vector2.hpp @@ -4,6 +4,9 @@ #include <string> #include <type_traits> +#include <sstream> +#include <iomanip> + template<typename T> struct vector2 { static_assert(std::is_arithmetic<T>::value, "vector2 members must be an arithmetic type (i.e. numbers)"); @@ -123,8 +126,18 @@ struct vector2 { } // other functions - std::string toString(void) const { - return "(" + std::to_string(x) + ", " + std::to_string(y) + ")"; + std::string toString(int precision = -1) const { + std::stringstream ss; + std::string sx, sy; + ss << std::fixed; + if (precision > -1) + ss << std::setprecision(precision); + ss << x; + sx = ss.str(); + ss.str(std::string()); + ss << y; + sy = ss.str(); + return "(" + sx + ", " + sy + ")"; } }; |