//! Geometric primitives and operations.
//!
//! This module provides the foundational geometric types and traits used throughout
//! the library, including points, shapes, and geometric operations.
pub mod diagram;
pub mod operations;
pub mod primitives;
pub mod projective;
pub mod shapes;
pub mod traits;