devela 0.27.0

A development layer of coherence.
Documentation
// devela::geom::dir
//
#![doc = crate::_DOC_GEOM_DIR!()] // public
#![doc = crate::_doc!(modules: crate::geom; dir)]
#![doc = crate::_doc!(flat:"geom")]
#![doc = crate::_doc!(hr)]
//!
//! This module defines the core primitives that describe how objects
//! point, turn, and transform within a geometric space. It covers both
//! continuous orientations and their discrete, symmetry-based
//! classifications.
//!
//! The types here provide the directional layer of geometry:
//! normalized vectors, angular notions, canonical sectors,
//! axis-aligned symmetries, and reversible orientation transforms.
//!
//! These constructs form the basis for navigation, rotation,
//! alignment, spatial reasoning, and any system where direction
//! drives behavior.
//

mod angle; // Angle, AngleDirection, AngleKind
mod boundary; // Boundary[1|2|3]d
// mod nav; // Spatial navigation and facing semantics.
// mod octant; // WIP
mod orientation; // Orientation[1|2|3]
// mod radial_sectors;

crate::structural_mods! { // _mods
    _mods {
        pub use super::{
            angle::*,
            boundary::*,
            // nav::_all::*, // WIP
            // octant::*, // WIP
            orientation::*,
            // radial_sectors::*;
        };
    }
}