SPolygonUtil.d.ts 189 B

12345
  1. import { SPoint } from "..";
  2. export declare class SPolygonUtil {
  3. static pointIn(x: number, y: number, pointList: SPoint[]): boolean;
  4. static clockDir(pointList: SPoint[]): number;
  5. }