face-api/build/classes/BoundingBox.js

11 lines
406 B
JavaScript
Raw Normal View History

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.BoundingBox = void 0;
const Box_1 = require("./Box");
class BoundingBox extends Box_1.Box {
2020-08-18 14:04:33 +02:00
constructor(left, top, right, bottom, allowNegativeDimensions = false) {
super({ left, top, right, bottom }, allowNegativeDimensions);
}
}
exports.BoundingBox = BoundingBox;
2020-08-18 14:04:33 +02:00
//# sourceMappingURL=BoundingBox.js.map