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
#![deny(
missing_docs,
missing_debug_implementations,
missing_copy_implementations,
trivial_casts,
trivial_numeric_casts,
unstable_features,
unused_import_braces,
unused_qualifications
)]
mod central;
mod implementation;
mod index;
mod moments;
mod normalized_central;
mod order;
mod primitives;
mod spatial;
pub use self::central::Central;
pub use self::index::{Index, SupportedIndex};
pub use self::moments::Moments;
pub use self::normalized_central::NormalizedCentral;
pub use self::order::{Order, SupportedOrder};
pub use self::primitives::{Point, Scalar};
pub use self::spatial::Spatial;