diff options
Diffstat (limited to 'src/material')
-rw-r--r-- | src/material/lambertian.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/material/lambertian.rs b/src/material/lambertian.rs index 65a59cc..8ef5e50 100644 --- a/src/material/lambertian.rs +++ b/src/material/lambertian.rs @@ -32,6 +32,6 @@ impl Material for Lambertian { newray.direction = i.n; } - Some((self.color.clone(), newray)) + Some((self.color, newray)) } } |