Overloading distance and distanceSqr allows us to bypass having to use the hypotenuse formula hypo = sqrt(x^2 + y^2) or use vectorMagnitude and create an unwanted/unneeded array.
private _distance = _xValue distance _yValue; private _distanceSqr = _xValue distanceSqr _yValue;