From 22a777174de684f946e83ed5da564db101bcdf83 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Wed, 21 Mar 2012 15:48:38 +0100 Subject: utils/point: added possibility to change coords --- src/utils/point.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/utils/point.hpp') diff --git a/src/utils/point.hpp b/src/utils/point.hpp index 6618e285..f897dbf6 100644 --- a/src/utils/point.hpp +++ b/src/utils/point.hpp @@ -60,11 +60,21 @@ namespace usdx return x; } + void set_x(const T& value) + { + x = value; + } + T get_y(void) const { return y; } + void set_y(const T& value) + { + y = value; + } + Point& operator+=(const Point &other) { -- cgit v1.2.3