BoundingBox.js 541 B

123456789101112
  1. import { __extends } from "tslib";
  2. import { Box } from './Box';
  3. var BoundingBox = /** @class */ (function (_super) {
  4. __extends(BoundingBox, _super);
  5. function BoundingBox(left, top, right, bottom, allowNegativeDimensions) {
  6. if (allowNegativeDimensions === void 0) { allowNegativeDimensions = false; }
  7. return _super.call(this, { left: left, top: top, right: right, bottom: bottom }, allowNegativeDimensions) || this;
  8. }
  9. return BoundingBox;
  10. }(Box));
  11. export { BoundingBox };
  12. //# sourceMappingURL=BoundingBox.js.map