crater/
lib.rs

1//! # Welcome to `crater.rs`!
2//!
3//! `crater.rs` is a library for defining, manipulating, and analyzing `N`-dimensional geometries.
4//!
5//! It is recommended to begin with the [`csg`] module, which provides a comprehensive interface for
6//! defining and manipulating solids.
7
8pub const VERSION: &str = env!("CARGO_PKG_VERSION");
9
10pub mod analysis;
11pub mod csg;
12pub mod primitives;
13pub mod serde;
14pub mod utils;
15
16#[cfg(test)]
17pub mod test_utils;