pathtracer/src/core/color.rs
2020-03-16 15:16:37 +01:00

7 lines
92 B
Rust

#[derive(Debug)]
pub struct LinearColor {
pub r: f64,
pub g: f64,
pub b: f64,
}