UNPKG

mindee

Version:

Mindee Client Library for Node.js

8 lines (7 loc) 255 B
import { Polygon } from "./polygon.js"; /** A bounding box defined by 4 points. */ export class BoundingBox extends Polygon { constructor(topLeft, topRight, bottomRight, bottomLeft) { super(topLeft, topRight, bottomRight, bottomLeft); } }