constructor()

in src/touch/shapes.ts [46:50]


    constructor(x?: number, y?: number, width?: number, height?: number) {
        super(x, y);
        this.width = width || 0;
        this.height = height || 0;
    }