2.0.2 • Published 3 years ago

ts-polygons-intersect v2.0.2

Weekly downloads
12
License
MIT
Repository
github
Last release
3 years ago

ts-polygons-intersect

This script finds all points where the polygons intersect each other.

Install

npm install ts-polygons-intersect

Usage

import {Polygon, intersection} from 'ts-polygons-intersect';
const poly1 = Polygon.fromJson([{x:0,y:1}, ...]);
const poly1 = Polygon.fromJson([{x:1,y:0}, ...]);
const intersection = intersection(poly1, poly2);

License

MIT