constructor()

in src/touch/shapes.ts [31:34]


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