Package eu.iv4xr.framework.extensions.pathfinding


package eu.iv4xr.framework.extensions.pathfinding
This package provides classes to do pathfinding over a graph. It contains classes such as:
  1. AStar implementing the A* graph-pathfinding algorithm. The target graph can be anything that implement the Navigatable interface.
  2. Navigatable is an interface for defining a graph that is searchable by the pathfinder(s) provided by this package.
  3. SimpleNavGraph is an implementation of Navigatable that facilitates pathfinding over a surface defined by a surface-mesh.
  4. SurfaceNavGraph is an extension of SimpleNavGraph that additionally provides support for surface exploration.