UNPKG

164 BTypeScriptView Raw
1/**
2 * @fileoverview 判断点是否在多边形内
3 * @author dxq613@gmail.com
4 */
5export declare function isPointInPolygon(points: any, x: any, y: any): boolean;