face-api/build/classes/Rect.js

7 lines
238 B
JavaScript
Raw Normal View History

2020-08-31 15:12:04 +02:00
import { Box } from './Box';
export class Rect extends Box {
constructor(x, y, width, height, allowNegativeDimensions = false) {
super({ x, y, width, height }, allowNegativeDimensions);
}
}
//# sourceMappingURL=Rect.js.map