/** * Define a point by his absciss and ordinate value */ export interface Point { x: number; y: number; }