aboutsummaryrefslogtreecommitdiff
path: root/src/material/diffuse_light.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/material/diffuse_light.rs')
-rw-r--r--src/material/diffuse_light.rs27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/material/diffuse_light.rs b/src/material/diffuse_light.rs
deleted file mode 100644
index fe462a8..0000000
--- a/src/material/diffuse_light.rs
+++ /dev/null
@@ -1,27 +0,0 @@
-use super::Material;
-use crate::core::{Ray, Spectrum};
-use crate::Float;
-
-pub struct DiffuseLight {
- color: Spectrum,
-}
-
-impl DiffuseLight {
- pub fn new(c: Spectrum) -> Self {
- Self {
- color: c,
- }
- }
-
- pub fn new_white(s: Float) -> Self {
- Self {
- color: Spectrum::new_rgb(s, s, s),
- }
- }
-}
-
-impl Material for DiffuseLight {
- fn emitted(&self, _: &Ray) -> Option<Spectrum> {
- Some(self.color)
- }
-}