/**
 * Common interface for points. Both Point and ObservablePoint implement it
 * @memberof maths
 */
export interface PointData {
    /** X coord */
    x: number;
    /** Y coord */
    y: number;
}
