diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2016-08-21 22:14:56 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2016-08-21 22:14:56 -0300 |
commit | 19c800c4f843081420ae6241017e439e7b6da132 (patch) | |
tree | 0afaf838f39270e9f26621d82dd1a6977b228d6c /Project/Line.h | |
parent | 474b1f94ced70e1d183a79bb6df87603982755aa (diff) | |
download | PSP.git-19c800c4f843081420ae6241017e439e7b6da132.tar.gz PSP.git-19c800c4f843081420ae6241017e439e7b6da132.tar.xz PSP.git-19c800c4f843081420ae6241017e439e7b6da132.zip |
Line implementation almost finished
Diffstat (limited to 'Project/Line.h')
-rw-r--r-- | Project/Line.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Project/Line.h b/Project/Line.h index 9293baa..7374e29 100644 --- a/Project/Line.h +++ b/Project/Line.h @@ -15,6 +15,8 @@ class Line : public Element virtual void Move(wxPoint2DDouble position) {} virtual void StartMove(wxPoint2DDouble position); virtual void MoveNode(Element* parent, wxPoint2DDouble position); + virtual bool NodeContains(wxPoint2DDouble position); + virtual bool SetNodeParent(Element* parent); virtual wxCursor GetBestPickboxCursor() const; virtual bool AddParent(Element* parent, wxPoint2DDouble position); virtual bool Intersects(wxRect2DDouble rect) const; |