|
- See also
- Basics
|
|
static bool | operator== (Point2Di inPoint2Di1, Point2Di inPoint2Di2) |
|
static bool | operator!= (Point2Di inPoint2Di1, Point2Di inPoint2Di2) |
| static Point2Di | operator+ (Point2Di inPoint1, Point2Di inPoint2) |
| | Sums points' coordinates.
|
| static Point2Di | operator- (Point2Di inPoint1, Point2Di inPoint2) |
| | Subtracts points' coordinates.
|
|
static Point2Di | operator- (Point2Di inPoint) |
| static bool | operator< (Point2Di inPoint1, Point2Di inPoint2) |
| | Compare both coordinates using the 'less than' logical operator.
|
| static bool | operator> (Point2Di inPoint1, Point2Di inPoint2) |
| | Compare both coordinates using the 'greater than' logical operator.
|
| static bool | operator<= (Point2Di inPoint1, Point2Di inPoint2) |
| | - Parameters
-
|
| static bool | operator>= (Point2Di inPoint1, Point2Di inPoint2) |
| | - Parameters
-
|
| static Point2Di | Deserialize (ByteBuffer inBuffer) |
| | De-serialize a Point2Di buffer.
|
| | Point2Di () |
| | Creates a new Point2Di object, with (0,0) coordinates.
|
| | Point2Di (int inX, int inY) |
| | Creates a new Point2Di object using the provided coordinates.
|
| ByteBuffer | Serialize () |
| | Serializes Point2Di object.
|
A 2D point in the discrete space.
Typically used to identify pixel position inside an Image.