1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2024 Christian Mauduit <ufoot@ufoot.org>

//! [Shortest Path](https://gitlab.com/ufoot/shortestpath) is an experimental library finding
//! the shortest path from A to B

mod distance;
mod errors;
mod gate;
mod gradient;
mod mesh;

pub mod mesh_2d;
pub mod mesh_3d;
pub mod mesh_topo;

pub use distance::*;
pub use errors::*;
pub use gate::*;
pub use gradient::*;
pub use mesh::*;