molcrafts-molrs 0.7.0

Molecular simulation toolkit: core data structures, IO, trajectory analysis, force fields, SMILES, and 3D conformer generation (feature-gated modules)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Region module exports
//!
//! This module collects geometric region data types and traits.

// Expose the ndarray-based Box merged into simbox.rs
pub mod simbox;
pub use simbox::SimBox;
// Generic region traits and shapes
#[allow(clippy::module_inception)]
pub mod region;
pub use crate::types::FNx3;
pub use region::{AndRegion, Cuboid, HollowSphere, NotRegion, OrRegion, Region, Sphere};