UNPKG

mindee

Version:

Mindee Client Library for Node.js

10 lines (9 loc) 286 B
/** A simple bounding box defined by 4 coordinates: xMin, yMin, xMax, yMax */ export declare class BBox { xMin: number; yMin: number; xMax: number; yMax: number; constructor(xMin: number, yMin: number, xMax: number, yMax: number); mergeBbox(bbox: BBox): BBox; }