2020-08-20 02:05:34 +02:00
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
exports.Rect = void 0;
|
|
|
|
const Box_1 = require("./Box");
|
|
|
|
class Rect extends Box_1.Box {
|
2020-08-18 14:04:33 +02:00
|
|
|
constructor(x, y, width, height, allowNegativeDimensions = false) {
|
|
|
|
super({ x, y, width, height }, allowNegativeDimensions);
|
|
|
|
}
|
|
|
|
}
|
2020-08-20 02:05:34 +02:00
|
|
|
exports.Rect = Rect;
|
2020-08-18 14:04:33 +02:00
|
|
|
//# sourceMappingURL=Rect.js.map
|