diff options
Diffstat (limited to 'src/material/metal.rs')
-rw-r--r-- | src/material/metal.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/material/metal.rs b/src/material/metal.rs index 638e5e4..880f23d 100644 --- a/src/material/metal.rs +++ b/src/material/metal.rs @@ -5,7 +5,7 @@ use crate::{hittable::HitRecord, vec3::Vec3}; pub struct Metal { pub albedo: Color, - pub fuzz: f64, // TODO: This should have value 0.0 - 1.0; this is not enforced + pub fuzz: f64, // This should have value 0.0 - 1.0; this is not enforced } impl Material for Metal { |