void PointSet (Point *point, int xCoordinate, int yCoordinate);
Sets the values in an existing Point structure. The Point structure defines the location of a point.
| Input | ||
| Name | Type | Description |
| xCoordinate | integer | Horizontal location of the point. |
| yCoordinate | integer | Vertical location of the point. |
| Output | ||
| Name | Type | Description |
| point | Point | Point structure in which to store the new values. |
None.