devela 0.28.0

A development substrate 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 macros; // dir!
// mod nav; // Spatial navigation and facing semantics. WIP
mod orientation; // Orientation[1|2|3]
// mod rot_sector; // WIP

crate::structural_mods! { // _mods
    _mods {
        pub use super::{
            angle::*,
            boundary::*,
            macros::ori,
            // nav::_all::*,
            orientation::*,
            // rot_sector::*,
        };
    }
}