Tesseract
3.02
|
#include <con_comp.h>
Public Member Functions | |
ConCompPt (int x, int y) | |
int | x () |
int | y () |
void | Shift (int dx, int dy) |
ConCompPt * | Next () |
void | SetNext (ConCompPt *pt) |
Definition at line 37 of file con_comp.h.
tesseract::ConCompPt::ConCompPt | ( | int | x, |
int | y | ||
) | [inline] |
Definition at line 39 of file con_comp.h.
ConCompPt* tesseract::ConCompPt::Next | ( | ) | [inline] |
Definition at line 50 of file con_comp.h.
{ return next_pt_; }
void tesseract::ConCompPt::SetNext | ( | ConCompPt * | pt | ) | [inline] |
Definition at line 51 of file con_comp.h.
{ next_pt_ = pt; }
void tesseract::ConCompPt::Shift | ( | int | dx, |
int | dy | ||
) | [inline] |
Definition at line 46 of file con_comp.h.
{ x_ += dx; y_ += dy; }
int tesseract::ConCompPt::x | ( | ) | [inline] |
Definition at line 44 of file con_comp.h.
{ return x_; }
int tesseract::ConCompPt::y | ( | ) | [inline] |
Definition at line 45 of file con_comp.h.
{ return y_; }