point-in-polygon.d.ts 159 B

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