/** * Defines an object that has 2D-coordinates (`x` and `y`). */ export interface IPoint2D { /** * The `x`-coordinate of the object */ x: number; /** * The `y`-coordinate of the object */ y: number; }