diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-08-08 17:01:53 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-08-08 17:01:53 -0300 |
commit | b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e (patch) | |
tree | 5879b694e565cf445b6f3c9a59782f72ab7543d5 /Project/Line.cpp | |
parent | 139b076149594e6cf508aea269b061aa8b428d9c (diff) | |
download | PSP.git-b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e.tar.gz PSP.git-b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e.tar.xz PSP.git-b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e.zip |
Start Power Line implementation
gogogogo
Diffstat (limited to 'Project/Line.cpp')
-rw-r--r-- | Project/Line.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Project/Line.cpp b/Project/Line.cpp new file mode 100644 index 0000000..5879555 --- /dev/null +++ b/Project/Line.cpp @@ -0,0 +1,12 @@ +#include "Line.h" + +Line::Line() {} +Line::~Line() {} +bool Line::Contains(wxPoint2DDouble position) const {} +void Line::Draw(wxPoint2DDouble translation, double scale) const {} +wxCursor Line::GetBestPickboxCursor() const {} +void Line::Insert(Element* parent, wxPoint2DDouble position) {} +bool Line::Intersects(wxRect2DDouble rect) const {} +void Line::MovePickbox(wxPoint2DDouble position) {} +bool Line::PickboxContains(wxPoint2DDouble position) {} +void Line::Rotate() {} |