Uses of Interface
org.newdawn.slick.util.pathfinding.AStarHeuristic

Packages that use AStarHeuristic
org.newdawn.slick.util.pathfinding A set of classes to provide configurable A* path finding on tilebased maps 
org.newdawn.slick.util.pathfinding.heuristics   
 

Uses of AStarHeuristic in org.newdawn.slick.util.pathfinding
 

Constructors in org.newdawn.slick.util.pathfinding with parameters of type AStarHeuristic
AStarPathFinder(TileBasedMap map, int maxSearchDistance, boolean allowDiagMovement, AStarHeuristic heuristic)
          Create a path finder
 

Uses of AStarHeuristic in org.newdawn.slick.util.pathfinding.heuristics
 

Classes in org.newdawn.slick.util.pathfinding.heuristics that implement AStarHeuristic
 class ClosestHeuristic
          A heuristic that uses the tile that is closest to the target as the next best tile.
 class ClosestSquaredHeuristic
          A heuristic that uses the tile that is closest to the target as the next best tile.
 class ManhattanHeuristic
          A heuristic that drives the search based on the Manhattan distance between the current location and the target
 



Copyright © 2006 New Dawn Software. All Rights Reserved.