getArea() { return this.width * this.height; }
toString() { return '' + this.getWidth() + 'x' + this.getHeight() + ' area=' + this.getArea(); }