Engauge Digitizer  2
 All Classes Files Functions Variables Enumerations Enumerator Friends Pages
PointMatchPixel.h
1 #ifndef POINT_MATCH_PIXEL_H
2 #define POINT_MATCH_PIXEL_H
3 
4 #include <QPoint>
5 
8 {
9  public:
12  int yOffset,
13  bool pixelIsOn);
14 
16  PointMatchPixel (const PointMatchPixel &other);
17 
20 
22  bool pixelIsOn () const;
23 
25  int xOffset () const;
26 
28  int yOffset () const;
29 
30  private:
32 
33  QPoint m_posOffset;
34  bool m_pixelIsOn;
35 };
36 
37 #endif // POINT_MATCH_PIXEL_H
int xOffset() const
X position relative to the center of the point.
Single on or off pixel out of the pixels that define the point match mode&#39;s candidate point...
bool pixelIsOn() const
True/false if pixel is on/off.
int yOffset() const
Y position relative to the center of the point.
PointMatchPixel & operator=(const PointMatchPixel &other)
Assignment operator.