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;
20pub mod validators;
21
22pub use alignment::GRID_TRANSFORMS_D6;
23pub use direction::{HexDirection, HexNodeNeighbor};
24pub use graph::{HexGridGraph, HexNeighborValidator};
25pub use mesh::{AffineTransform2D, HexGridHomographyMesh, HexMeshError};
26pub use rectify::{HexGridHomography, HexRectifyError};
27pub use smoothness::{hex_find_inconsistent_corners, hex_predict_grid_position};
28pub use traverse::{hex_assign_grid_coordinates, hex_connected_components};
29pub use validators::SpatialHexValidator;