/**
* @see {@link Quadrilateral.points}
* */
export interface Point {
  /**
   * X coordinate of the point.
   */
  x: number;
  /**
   * Y coordinate of the point.
   */
  y: number;
}
