/**
* A structure representing a point in a two-dimensional plane.
*/
export interface IPointF {
    /** The x-coordinate of the point. */
    x?: number;
    /** The y-coordinate of the point. */
    y?: number;
}
