export interface ICoordinates {
    x: number;
    y: number;
}
export interface ICoordinates3d extends ICoordinates {
    z: number;
}
