6 lines
245 B
Rust
6 lines
245 B
Rust
|
use std::io::Write;
|
||
|
use super::Color;
|
||
|
|
||
|
pub fn write_color(out: &mut impl Write, pixel_color: Color) {
|
||
|
write!(out, "{} {} {}\n", (255.999*pixel_color.x()) as u32, (255.999*pixel_color.y()) as u32, (255.999*pixel_color.z()) as u32).unwrap();
|
||
|
}
|