@@ -222,6 +222,7 @@ $$d_2 = \lfloor 1.5 \times (\min(|x_1 - x_2|, |y_1 - y_2|))\rfloor$$
$$d = d_1 + d_2$$
And in code, that looks like this[^odd]:
+
~~~ {.python}
def dandddistance(x1, y1, x2, y2):
mindist = min(abs(x1 - x2), abs(y1 - y2))