My Project
|
Inherits Object.
Public Member Functions | |
QuadPoints (const PointF &first, const PointF &second, const PointF &third, const PointF &fourth) | |
Constructor, with parameters. More... | |
QuadPoints () | |
Constructor. | |
QuadPoints (const QuadPoints &quad_points) | |
Constructor, with another quadrilateral points object. More... | |
bool | operator != (const QuadPoints &quad_points) const |
Not equal operator. More... | |
QuadPoints & | operator= (const QuadPoints &quad_points) |
Assign operator. More... | |
bool | operator== (const QuadPoints &quad_points) const |
Equal operator. More... | |
void | Set (const PointF &first, const PointF &second, const PointF &third, const PointF &fourth) |
Set value. More... | |
Public Attributes | |
PointF | first |
First point of quadrilateral, in PDF coordinate system. | |
PointF | fourth |
Fourth point of quadrilateral, in PDF coordinate system. | |
PointF | second |
Second point of quadrilateral, in PDF coordinate system. | |
PointF | third |
Third point of quadrilateral, in PDF coordinate system. | |
This class represents points of a quadrilateral, in PDF coordinate system. The order of points in a quadrilateral should be as follows:
|
inline |
Constructor, with parameters.
[in] | first | First point of the quadrilateral, in PDF coordinate system. |
[in] | second | Second point of the quadrilateral, in PDF coordinate system. |
[in] | third | Third point of the quadrilateral, in PDF coordinate system. |
[in] | fourth | Fourth point of the quadrilateral, in PDF coordinate system. |
|
inline |
Constructor, with another quadrilateral points object.
[in] | quad_points | Another quadrilateral points object. |
|
inline |
Not equal operator.
[in] | quad_points | Another quadrilateral points object. This function will check if current object is not equal to this one. |
|
inline |
Assign operator.
[in] | quad_points | Another quadrilateral points object, whose value would be assigned to current object. |
|
inline |
Equal operator.
[in] | quad_points | Another quadrilateral points object. This function will check if current object is equal to this one. |
|
inline |
Set value.
[in] | first | First point of the quadrilateral, in PDF coordinate system. |
[in] | second | Second point of the quadrilateral, in PDF coordinate system. |
[in] | third | Third point of the quadrilateral, in PDF coordinate system. |
[in] | fourth | Fourth point of the quadrilateral, in PDF coordinate system. |