The java.awt.Point class in Java is a built-in class that represents a location in a two-dimensional coordinate system. It contains two integer fields, x and y, which hold the coordinates of the point. The Point class provides methods for setting and getting the coordinates, as well as for comparing two points for equality and determining the distance between two points. It is commonly used in graphical applications to represent a position on a screen or in a coordinate plane.
Java Point - 30 examples found. These are the top rated real world Java examples of java.awt.Point extracted from open source projects. You can rate examples to help us improve the quality of examples.