Enough things had accumulated that it seemed to make sense to group some stuff together. So here it is.
7 lines
326 B
Rust
7 lines
326 B
Rust
pub mod halton;
|
|
mod monte_carlo;
|
|
|
|
pub use self::monte_carlo::{square_to_circle, cosine_sample_hemisphere, uniform_sample_hemisphere,
|
|
uniform_sample_sphere, uniform_sample_cone, uniform_sample_cone_pdf,
|
|
spherical_triangle_solid_angle, uniform_sample_spherical_triangle};
|