/** * Implements ray shooting algorithm. Returns relation between point and polygon: inside, outside or boundary * @param {Polygon} polygon - polygon to test * @param {Point} point - point to test * @returns {INSIDE|OUTSIDE|BOUNDARY} */ export declare function ray_shoot(polygon: any, point: any): any; //# sourceMappingURL=ray_shooting.d.ts.map