From 5e7c19ae397164dd718b2593663cee5d1be687cd Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Sat, 28 Jan 2017 14:50:12 -0200 Subject: Node bug fixes, tf form implemented --- Project/ControlElement.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Project/ControlElement.h') diff --git a/Project/ControlElement.h b/Project/ControlElement.h index 9414d38..063b2a5 100644 --- a/Project/ControlElement.h +++ b/Project/ControlElement.h @@ -14,7 +14,7 @@ public: wxRect2DDouble GetRect() const { return m_rect; } void SetRect(wxRect2DDouble rect) { m_rect = rect; } - wxPoint2DDouble GetPosition() const { return m_rect.GetPosition(); } + wxPoint2DDouble GetPosition() const; void SetPosition(wxPoint2DDouble position); NodeType GetNodeType() const { return m_nodeType; } @@ -36,7 +36,6 @@ protected: double m_radius = 3.0; std::vector m_triPts; - std::vector m_triPtsMovePos; }; class ControlElement : public Element -- cgit