DTP misses direction [-1,-1] [1](https://github.com/petercorke/robotics-toolbox-python/blob/master/roboticstoolbox/mobile/DistanceTransformPlanner.py) ``` directions = np.array( [ # dy dx [-1, -1], [0, -1], [1, -1], [-1, 0], [0, 0], [1, 0], [0, 1], [1, 1], ], dtype=int, ) ``` This generates paths that can't go diagonally right-down. As shown in this image: <img width="782" height="671" alt="Image" src="https://github.com/user-attachments/assets/fb88be41-95fb-4f75-9647-0469eed3588e" />