diff options
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() {} |