Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_math/src/sampling/mod.rs
6596 views
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")]
6
pub mod mesh_sampling;
7
pub mod shape_sampling;
8
pub mod standard;
9
10
#[cfg(feature = "alloc")]
11
pub use mesh_sampling::*;
12
pub use shape_sampling::*;
13
pub use standard::*;
14
15