public bool InRadius(Pos3DR other) { return(Distance(other) <= r); }
public double Distance(Pos3DR other) { return(Abs(x - other.x) + Abs(y - other.y) + Abs(z - other.z)); }