Package ai.path

Interface Map<Position>

All Known Implementing Classes:
Vector2fMap

public interface Map<Position>
A Map describes the complete state of a finite graph and offers a start and target node to be processed by a pathfinding algorithm.
Since:
08.07.2021
Author:
Juyas
  • Method Summary

    Modifier and Type
    Method
    Description
    The start node for the pathfinding algorithm
    The target node for the pathfinding algorithm
  • Method Details

    • start

      Node<Position> start()
      The start node for the pathfinding algorithm
      Returns:
      the start node
    • target

      Node<Position> target()
      The target node for the pathfinding algorithm
      Returns:
      the target node