/* * Copyright (C) 2023 Klaus Reimer * See LICENSE.md for licensing information. */ /** A point with an X and Y coordinate */ export interface Point { /** The X coordinate. */ x: number; /** The Y coordinate. */ y: number; }