bevy_math/sampling/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! This module contains tools related to random sampling.
//!
//! To use this, the "rand" feature must be enabled.

#[cfg(feature = "alloc")]
pub mod mesh_sampling;
pub mod shape_sampling;
pub mod standard;

#[cfg(feature = "alloc")]
pub use mesh_sampling::*;
pub use shape_sampling::*;
pub use standard::*;