Computes the manhattan distance between this 3D vector and the given one.
double manhattanDistanceTo(Vector3 v ) { final dx = x - v.x, dy = y - v.y, dz = z - v.z; return dx.abs() + dy.abs() + dz.abs(); }