point-in-polygon-hao
Version:
A point in polygon based on the paper Optimal Reliable Point-in-Polygon Test and Differential Coding Boolean Operations on Polygons
11 lines (10 loc) • 367 B
text/typescript
declare module "point-in-polygon-hao" {
/**
* Determines if a point is in a polygon
*
* @param p the point
* @param polygon the polygon
* @returns true if p in polygon, false if p is not in polygon, and 0 if p is on an edge of polygon
*/
export default function pointInPolygon(p: number[], polygon: number[][][]): boolean | 0;
}