13 lines
339 B
Rust
13 lines
339 B
Rust
pub mod cie;
|
|
pub mod colorspace;
|
|
pub mod rgb;
|
|
pub mod sampled;
|
|
pub mod simple;
|
|
|
|
use crate::core::pbrt::Float;
|
|
|
|
pub use colorspace::{RGBColorSpace, StandardColorSpaces};
|
|
pub use rgb::*;
|
|
pub use sampled::{CIE_Y_INTEGRAL, LAMBDA_MAX, LAMBDA_MIN};
|
|
pub use sampled::{N_SPECTRUM_SAMPLES, SampledSpectrum, SampledWavelengths};
|
|
pub use simple::*;
|