Package io.ytcode.pathfinding.astar
Class Reachability
- java.lang.Object
-
- io.ytcode.pathfinding.astar.Reachability
-
public class Reachability extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Reachability()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static longgetClosestWalkablePointToTarget(int x1, int y1, int x2, int y2, int scale, Grid grid)static longgetClosestWalkablePointToTarget(int x1, int y1, int x2, int y2, Grid grid)static booleanisReachable(int x1, int y1, int x2, int y2, int scale, Grid grid)static booleanisReachable(int x1, int y1, int x2, int y2, Grid grid)
-
-
-
Method Detail
-
isReachable
public static boolean isReachable(int x1, int y1, int x2, int y2, Grid grid)
-
isReachable
public static boolean isReachable(int x1, int y1, int x2, int y2, int scale, Grid grid)
-
getClosestWalkablePointToTarget
public static long getClosestWalkablePointToTarget(int x1, int y1, int x2, int y2, Grid grid)
-
getClosestWalkablePointToTarget
public static long getClosestWalkablePointToTarget(int x1, int y1, int x2, int y2, int scale, Grid grid)
-
-