in src/shapes/rect/rect.ts [37:42]
constructor(left?: number, top?: number, width?: number, height?: number) {
this.left = left || 0;
this.top = top || 0;
this.width = width || 0;
this.height = height || 0;
}