int PointEqual (Point point1, Point point2);
Indicates if two points are the same.
PointEqual returns 1 if the x and y values of two specific points are the same; it returns 0 otherwise.
| Input | ||
| Name | Type | Description |
| point1 | Point | Point structure. |
| point2 | Point | Point structure. |
| Name | Type | Description | ||||||
| pointsAreEqual | integer | Indication that the two points are the same.
|