UNPKG

min-bounding-rectangle

Version:

Minimum bounding rectangle implementation in JavaScript. Uses `concaveman` and `mathjs` as dependencies.

4 lines (3 loc) 105 B
type XY = [number, number]; export declare const findMinBoundingRect: (points: XY[]) => XY[]; export {};