Squared Euclidean distance between this vector and o.
o
Prefer over distance when only relative comparison is needed.
double distanceSqr(V2 o) => (x - o.x)*(x - o.x) + (y - o.y)*(y - o.y);