Uses of Interface
org.generation5.ai.Pathfinder.Node

Packages that use Pathfinder.Node
org.generation5.ai General AI classes including agents, pathfinders and finite-state machines. 
org.generation5.util This package provides utility methods and classes. 
 

Uses of Pathfinder.Node in org.generation5.ai
 

Classes in org.generation5.ai that implement Pathfinder.Node
static class AStarPathfinder.AStarNode
          The pathfinder node.
 

Methods in org.generation5.ai with parameters of type Pathfinder.Node
 boolean Navigable.isValid(Pathfinder.Node node)
          Determines whether the given node is valid.
 double Navigable.getCost(Pathfinder.Node n1, Pathfinder.Node n2)
          Return the cost to travel from node 1 to node 2.
 double Navigable.getDistance(Pathfinder.Node n1, Pathfinder.Node n2)
          Return the distance between the node 1 and node 2.
 int Navigable.createNodeID(Pathfinder.Node node)
          Generate a unique ID for a given node.
 

Uses of Pathfinder.Node in org.generation5.util
 

Methods in org.generation5.util with parameters of type Pathfinder.Node
 int StandardMap2D.createNodeID(Pathfinder.Node node)
          Create the node ID from positional information.
 double StandardMap2D.getCost(Pathfinder.Node parent, Pathfinder.Node node)
           
 double StandardMap2D.getDistance(Pathfinder.Node goal, Pathfinder.Node node)
           
 boolean StandardMap2D.isValid(Pathfinder.Node node)
           
 


This documentation is part of the Generation5 JDK.