includesDistance(d: number, eucledian = true) {
        return (eucledian ? this.dist.to(d) : d) <= this._currR;
    }