bestagon 0.6.0

An engine for discrete stuff in hexagonal grids
Documentation
pub use edge::*;
pub use hex::*;
pub use node::*;

pub mod cartesian;
pub mod distance;
pub mod grid_line;
pub mod hex_range;
pub mod lerp;
pub mod neighbours;
pub mod round;

mod edge; // where two hexes meet
mod hex; // the face of a hexagon
mod node; // where three edges meet

// private modules not intended for usage
mod division;
mod math;