rotateCCW() {
        const { width, height } = this;
        const w1 = width - 1;
        this._rotate((x, y) => (w1 - x) * height + y);
        this.size[0] = height;