import { IPoint } from '../point';
export interface ILine {
    point1: IPoint;
    point2: IPoint;
}
