import * as k from '../utils/constants'; import * as geom from '../classes'; /** * Implements ray shooting algorithm. Returns relation between point and polygon: inside, outside or boundary */ export declare function ray_shoot(polygon: geom.Polygon, point: geom.Point): k.Inclusion; //# sourceMappingURL=ray_shooting.d.ts.map