bestagon/lib.rs
1pub use edge::*;
2pub use hex::*;
3pub use node::*;
4
5pub mod cartesian;
6pub mod distance;
7pub mod grid_line;
8pub mod hex_range;
9pub mod lerp;
10pub mod neighbours;
11pub mod round;
12
13mod edge; // where two hexes meet
14mod hex; // the face of a hexagon
15mod node; // where three edges meet
16
17// private modules not intended for usage
18mod division;
19mod math;