bevy_math/sampling/
mod.rs

1//! This module contains tools related to random sampling.
2//!
3//! To use this, the "rand" feature must be enabled.
4
5pub mod shape_sampling;
6pub mod standard;
7
8pub use shape_sampling::*;
9pub use standard::*;