diff options
author | Julian T <julian@jtle.dk> | 2021-03-07 18:25:35 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-03-07 18:25:35 +0100 |
commit | 94b14ec5a24f587c97b11d6c56b9116a58a7385a (patch) | |
tree | 7dd8f776c257b296be96dfc6ecb9c182343e70ce /src/material/mod.rs | |
parent | 3f78cacdd93036dbd51bae77d5d8e5430a0bc75f (diff) |
Add light materials
Diffstat (limited to 'src/material/mod.rs')
-rw-r--r-- | src/material/mod.rs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/material/mod.rs b/src/material/mod.rs index 7f920e2..3e92bf6 100644 --- a/src/material/mod.rs +++ b/src/material/mod.rs @@ -4,10 +4,20 @@ use crate::sample::Sampler; mod lambertian; mod reflectant; +mod diffuse_light; +mod sky_light; pub use lambertian::Lambertian; pub use reflectant::Reflectant; +pub use diffuse_light::DiffuseLight; +pub use sky_light::SkyLight; pub trait Material: Sync + Send { - fn scatter(&self, ray: &Ray, i: &Intersection, sampler: &mut dyn Sampler) -> Option<(Spectrum, Ray)>; + fn scatter(&self, _: &Ray, _: &Intersection, _: &mut dyn Sampler) -> Option<(Spectrum, Ray)> { + None + } + + fn emitted(&self, _: &Ray) -> Option<Spectrum> { + None + } } |