This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define(function() { | |
var AStar = (function () { | |
/** | |
* Advanced A* (A-Star) algorithm for a path finder. | |
* This does pixel based path finding, for map grids and is an advance | |
* on the original authors code. | |
* |