The Point class is used to indicate a pixel location on the screen.
The horizontal location of the pixel.
The vertical location of the pixel.
Set the value of a point. This function is an alternative to setting the x and y values individually.
x (int): the x value you wish to set y (int): the y value you wish to set Return value: noneSet the value of a point by copying an existing point.
point (Point): another Point object whose value you wish to copy Return value: none