diff options
author | lamp | 2024-01-21 17:14:08 +0000 |
---|---|---|
committer | lamp | 2024-01-21 17:14:08 +0000 |
commit | 919734955118c111c8180899c11a9a5f295ebe6d (patch) | |
tree | df267af7cfaedad9f9ccdcfd42a31ea90974f86c /src/material | |
parent | 45fafbcd4b41a5388ece377c4e051b5846407288 (diff) |
tidy some todosmain
Diffstat (limited to 'src/material')
-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 { |