public equals(other: any): boolean {
        if (other instanceof Dimension) {
            const d = <Dimension>other;
            return this.width === d.width && this.height === d.height;
        }