projective_grid/hex/
mod.rs1pub mod alignment;
14pub mod direction;
15pub mod graph;
16pub mod mesh;
17pub mod rectify;
18pub mod smoothness;
19pub mod traverse;
20
21pub use alignment::GRID_TRANSFORMS_D6;
22pub use direction::{HexDirection, HexNodeNeighbor};
23pub use graph::{HexGridGraph, HexNeighborValidator};
24pub use mesh::{AffineTransform2D, HexGridHomographyMesh, HexMeshError};
25pub use rectify::{HexGridHomography, HexRectifyError};
26pub use smoothness::{hex_find_inconsistent_corners, hex_predict_grid_position};
27pub use traverse::{hex_assign_grid_coordinates, hex_connected_components};