pub mod cie; pub mod colorspace; pub mod rgb; pub mod sampled; pub mod simple; use crate::core::pbrt::Float; pub use colorspace::RGBColorSpace; pub use rgb::*; pub use sampled::{CIE_Y_INTEGRAL, LAMBDA_MAX, LAMBDA_MIN}; pub use sampled::{N_SPECTRUM_SAMPLES, SampledSpectrum, SampledWavelengths}; pub use simple::*;