From b5324f48c855b0c82ccf6da7d5a008fe5cf1c17e Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Mon, 8 Aug 2016 17:01:53 -0300 Subject: Start Power Line implementation gogogogo --- Project/Line.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Project/Line.cpp (limited to 'Project/Line.cpp') 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() {} -- cgit