1
2
3
4
5
6
7
8
9
10
11
//! Provides a collection of atmospheric models.
//!
//! To create a new atmospheric model, refer to [crate::model].

/// [`Nishita`](crate::collection::nishita::Nishita) sky model.
#[cfg(any(doc, feature = "nishita"))]
pub mod nishita;

/// [`Gradient`](crate::collection::gradient::Gradient) sky model.
#[cfg(any(doc, feature = "gradient"))]
pub mod gradient;