devela/num/geom/metric/mod.rs
1// devela::num::geom::metric
2//
3//! Geometric measurement and spatial relationships.
4//!
5//! This module defines core spatial metrics describing spatial properties
6//! in an orthogonal coordinate system, enabling structured traversal
7//! and measurement in geometric spaces.
8//
9
10mod angle; // Angle, AngleDirection, AngleKind
11mod distance; // Distance
12mod extent; // Extent, Extent2d, Extent3d
13mod orientation; // Orientation
14mod position; // Position
15mod region; // Region
16mod stride; // Stride
17
18crate::items! { // structural access: _mods, _all
19 #[allow(unused)]
20 pub use _mods::*;
21
22 mod _mods {
23 pub use super::{
24 angle::*, distance::*, extent::*, orientation::*, position::*, region::*, stride::*,
25 };
26 // WIPZONE
27 // pub use super::cycle::*;
28 }
29 pub(super) mod _all {
30 #[doc(inline)]
31 pub use super::_mods::*;
32 }
33}
34// WIPZONE
35// mod cycle;