xs_h3 0.2.0

Excerion Sun's Rust implementation of Uber's H3 geospatial indexing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/math/mod.rs
#![allow(clippy::module_name_repetitions)] // Common in math modules

pub mod extensions;
pub mod vec2d;
pub mod vec3d;

// Re-export if needed for internal crate use, or they can be used as `math::vec2d::foo`
// pub use extensions::*;
// pub use vec2d::*;
// pub use vec3d::*;