1//! This module contains tools related to random sampling. 2//! 3//! To use this, the "rand" feature must be enabled. 4 5#[cfg(feature = "alloc")] 6pub mod mesh_sampling; 7pub mod shape_sampling; 8pub mod standard; 9 10#[cfg(feature = "alloc")] 11pub use mesh_sampling::*; 12pub use shape_sampling::*; 13pub use standard::*; 14 15