2020-08-20 02:10:42 +02:00
|
|
|
import { Box } from './Box';
|
|
|
|
|
export class BoundingBox extends Box {
|
2020-08-18 14:04:33 +02:00
|
|
|
constructor(left, top, right, bottom, allowNegativeDimensions = false) {
|
|
|
|
|
super({ left, top, right, bottom }, allowNegativeDimensions);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//# sourceMappingURL=BoundingBox.js.map
|