summaryrefslogtreecommitdiffstats
path: root/Project/ControlElement.h
diff options
context:
space:
mode:
authorThales1330 <thaleslima.ufu@gmail.com>2017-01-28 14:50:12 -0200
committerThales1330 <thaleslima.ufu@gmail.com>2017-01-28 14:50:12 -0200
commit5e7c19ae397164dd718b2593663cee5d1be687cd (patch)
treeea14141c3f4bb83ea8448cf017dfeb5b211611a0 /Project/ControlElement.h
parent10bb7105946bc0a892a9daf42ec5181ad9994fcf (diff)
downloadPSP.git-5e7c19ae397164dd718b2593663cee5d1be687cd.tar.gz
PSP.git-5e7c19ae397164dd718b2593663cee5d1be687cd.tar.xz
PSP.git-5e7c19ae397164dd718b2593663cee5d1be687cd.zip
Node bug fixes, tf form implemented
Diffstat (limited to 'Project/ControlElement.h')
-rw-r--r--Project/ControlElement.h3
1 files changed, 1 insertions, 2 deletions
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<wxPoint2DDouble> m_triPts;
- std::vector<wxPoint2DDouble> m_triPtsMovePos;
};
class ControlElement : public Element