package drawing; /** * Represents a point in the 2D x-y plane. */ public class Point { /** * The x coordinate of the point. */ double x; /** * The y coordinate of the point. */ double y; }