Interface AStarHeuristic

All Known Implementing Classes:
ClosestHeuristic, ClosestSquaredHeuristic, ManhattanHeuristic

public interface AStarHeuristic
Use to define your own heuristic for use with the ConstrainedAStar.
  • Method Summary

    Modifier and Type
    Method
    Description
    float
    getCost(int x, int y, int z, int tx, int ty, int tz)
     
  • Method Details

    • getCost

      float getCost(int x, int y, int z, int tx, int ty, int tz)