BREP 0.1.0

A boundary representation (BREP) geometry kernel for building CAD applications.
Documentation
//! # BREP
//!
//! A boundary representation (BREP) geometry kernel for building CAD
//! applications.
//!
//! The project is intended to provide core CAD functionality including
//! topology, geometry, solid modeling, modeling operations, and visualization.
//!
//! ## Status
//!
//! BREP is currently in early development. APIs are expected to change
//! substantially before reaching a stable release.

/// Returns the current BREP package version.
pub const fn version() -> &'static str {
    env!("CARGO_PKG_VERSION")
}

/// Indicates that this is an early-development release of the BREP kernel.
pub const EARLY_DEVELOPMENT: bool = true;