export interface Point {
  x: number;
  y: number;
}

/** Lightweight representation of a Polygon as a series of points. */
export type PolyPoints = Point[];
