The A* (A-star) algorithm usually represents a path on a grid.
Once a path has been found, however, the path looks blocky and is not suited if you move your units with floating point datatypes.
Here is an image describing the problem. The whites tiles represent the path found by A*. The black line path is the path I want, the red line path is the one I don't.
One solution would be to select a corner when the path turns, and switch/keep side when the path turns the other way. Seems like the most logical and cleanest way to do this.
No comments:
Post a Comment