pathtracer/src/core/color.rs

7 lines
92 B
Rust
Raw Normal View History

2020-03-16 15:16:37 +01:00
#[derive(Debug)]
pub struct LinearColor {
pub r: f64,
pub g: f64,
pub b: f64,
}