export interface IPoint {
    x: number;
    y: number;
}
export interface IVector2D {
    v1: IPoint;
    v2: IPoint;
}
