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/sky_light.rs | |
parent | 3f78cacdd93036dbd51bae77d5d8e5430a0bc75f (diff) |
Add light materials
Diffstat (limited to 'src/material/sky_light.rs')
-rw-r--r-- | src/material/sky_light.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/material/sky_light.rs b/src/material/sky_light.rs new file mode 100644 index 0000000..e499b6e --- /dev/null +++ b/src/material/sky_light.rs @@ -0,0 +1,19 @@ +use super::Material; +use crate::core::{Ray, Spectrum}; + +pub struct SkyLight { +} + +impl SkyLight { + pub fn new() -> Self { + Self {} + } +} + +impl Material for SkyLight { + fn emitted(&self, ray: &Ray) -> Option<Spectrum> { + let t = (ray.direction.norm().y + 1.0) * 0.5; + + Some(Spectrum::new_rgb(1.0, 1.0, 1.0) * (1.0-t) + Spectrum::new_rgb(0.5, 0.7, 1.0) * t) + } +} |