Engauge Digitizer  2
CallbackAxesCheckerFromAxesPoints.cpp
Go to the documentation of this file.
1 /******************************************************************************************************
2  * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3  * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4  * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5  ******************************************************************************************************/
6 
8 #include "EngaugeAssert.h"
9 
11 {
12 }
13 
15  const Point &point)
16 {
17  m_points.push_back (point);
18 
20 }
21 
23 {
24  return m_points;
25 }
CallbackSearchReturn callback(const QString &curveName, const Point &point)
Callback method.
Class that represents one digitized point. The screen-to-graph coordinate transformation is always ex...
Definition: Point.h:25
CallbackSearchReturn
Return values for search callback methods.
Continue normal execution of the search.
Points points() const
Return the collected points as a polygon, in screen coordinates.
QList< Point > Points
Definition: Points.h:13