1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#![warn(
clippy::all,
clippy::correctness,
clippy::suspicious,
clippy::style,
clippy::complexity,
clippy::perf,
nonstandard_style
)]
#[cfg(test)]
#[macro_use]
extern crate approx;
#[macro_use]
extern crate ndarray;
pub use crate::array::{AxisOrder, H3Converter};
pub use crate::error::Error;
pub use crate::resolution::ResolutionSearchMode;
pub use crate::transform::Transform;
pub mod array;
pub mod error;
pub mod resolution;
mod sphere;
pub mod transform;