UNPKG

mindee

Version:

Mindee Client Library for Node.js

14 lines (13 loc) 366 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BBox = void 0; /** A simple bounding box defined by 4 coordinates: xMin, yMin, xMax, yMax */ class BBox { constructor(xMin, yMin, xMax, yMax) { this.xMin = xMin; this.yMin = yMin; this.xMax = xMax; this.yMax = yMax; } } exports.BBox = BBox;