UNPKG

207 BTypeScriptView Raw
1/**
2 * @see https://stackoverflow.com/questions/753140/how-do-i-determine-if-two-convex-polygons-intersect
3 */
4export declare function isPolygonsIntersect(points1: number[][], points2: number[][]): boolean;