constructor()

in src/shapes/point.ts [33:36]


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