BoundingBox.js 641 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var tslib_1 = require("tslib");
  4. var Box_1 = require("./Box");
  5. var BoundingBox = /** @class */ (function (_super) {
  6. tslib_1.__extends(BoundingBox, _super);
  7. function BoundingBox(left, top, right, bottom, allowNegativeDimensions) {
  8. if (allowNegativeDimensions === void 0) { allowNegativeDimensions = false; }
  9. return _super.call(this, { left: left, top: top, right: right, bottom: bottom }, allowNegativeDimensions) || this;
  10. }
  11. return BoundingBox;
  12. }(Box_1.Box));
  13. exports.BoundingBox = BoundingBox;
  14. //# sourceMappingURL=BoundingBox.js.map