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