Type definition for point class for integer.
More...
Inherits SystemIDisposable.
|
int | x [get, set] |
| x coordinate of the point.
|
|
int | y [get, set] |
| y coordinate of the point.
|
|
Type definition for point class for integer.
foxit.common.fxcrt.Point.Point |
( |
int |
new_x, |
|
|
int |
new_y |
|
) |
| |
|
inline |
Constructor, with parameters.
- Parameters
-
[in] | new_x | x coordinate of the point. |
[in] | new_y | y coordinate of the point. |
foxit.common.fxcrt.Point.Point |
( |
Point |
other | ) |
|
|
inline |
Copy constructor.
- Parameters
-
void foxit.common.fxcrt.Point.Add |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
|
inline |
Add a point.
- Parameters
-
[in] | x | x coordinate of the subtrahend point. |
[in] | y | x coordinate of the subtrahend point. |
- Returns
- None.
void foxit.common.fxcrt.Point.Reset |
( |
| ) |
|
|
inline |
Reset to the base point.
- Returns
- None.
void foxit.common.fxcrt.Point.Set |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
|
inline |
Set values.
- Parameters
-
[in] | x | x coordinate of the point. |
[in] | y | x coordinate of the point. |
- Returns
- None.
void foxit.common.fxcrt.Point.Set |
( |
Point |
psv | ) |
|
|
inline |
Set values.
- Parameters
-
[in] | psv | Another value object. |
- Returns
- None.
void foxit.common.fxcrt.Point.Subtract |
( |
int |
x, |
|
|
int |
y |
|
) |
| |
|
inline |
Subtract a point.
- Parameters
-
[in] | x | x coordinate of the addend point. |
[in] | y | x coordinate of the addend point. |
- Returns
- None.