mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-24 07:25:40 -06:00
10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
export default intersectPolygon;
|
|
/**
|
|
* Returns the point ({x, y}) at which the point argument intersects with the node argument assuming
|
|
* that it has the shape specified by polygon.
|
|
*
|
|
* @param node
|
|
* @param polyPoints
|
|
* @param point
|
|
*/
|
|
declare function intersectPolygon(node: any, polyPoints: any, point: any): any;
|