UNPKG

point-is-in-polygon

Version:

The `point-is-in-polygon` package is a lightweight package that was developed to check if the coordinates of a point are in the coordinates of a polygon.

6 lines (5 loc) 153 B
import { PointData } from '../point'; export declare class Polygon { readonly coordinates: PointData[]; constructor(coordinates: PointData[]); }