node-red-contrib-tak-registration
Version:
A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK
11 lines (10 loc) • 367 B
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;
}