=============== Getting started =============== Installation ------------ Installation with pip: .. code-block:: console pip install extremitypathfinder Installation with Numba for a significant speedup, with the tradeoff of a larger installation footprint and slight initial compilation time (until caching kicks in): .. code-block:: console pip install extremitypathfinder[numba] Dependencies ------------ please refer to the ``pyproject.toml`` file for current dependency specification. Basics ------ .. code-block:: python from extremitypathfinder import PolygonEnvironment environment = PolygonEnvironment() # counter clockwise vertex numbering! boundary_coordinates = [(0.0, 0.0), (10.0, 0.0), (9.0, 5.0), (10.0, 10.0), (0.0, 10.0)] # clockwise numbering! list_of_holes = [ [ (3.0, 7.0), (5.0, 9.0), (4.5, 7.0), (5.0, 4.0), ], ] environment.store(boundary_coordinates, list_of_holes, validate=False) start_coordinates = (4.5, 1.0) goal_coordinates = (4.0, 8.5) path, length = environment.find_shortest_path(start_coordinates, goal_coordinates) All available features of this package are explained :ref:`HERE `.