devela/num/geom/mod.rs
// devela::num::geom
//
//! Geometric types and operations, spatial constructs and analysis.
//
mod shape;
crate::items! { // structural access: _mods, _all
#[allow(unused)]
pub use _mods::*;
mod _mods {
pub use super::shape::_all::*;
}
pub(super) mod _all {
#[doc(inline)]
pub use super::_mods::*;
}
}